You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
기존 submit wordlist에서 if(middlecategory가 일치 && word in aggregation) 로직을 수정
if(middleCategory가 일치){
if(word in aggregation){
기존 로직 수행
}
else{
aggregation에 단어 추가해주는 로직 개발하기
}
}
잠재적 문제점과 내 생각: 기존에 선정되었었던 단어가 있으면 그게 aggregation에서 사라지지 않아서 consistency?가 깨지는 문제가 발생할 수 있음
그런데 단어를 제출받는 폼에는 사라진 단어들이 등장하지 않으므로 긴 기간 후에는 결국 aggregation에서 선택받지 못해서 사라질 것.
혹시 문제가 또 생긴다면,
aggregation에 단어 추가해주는 로직이 실행될 때(consistency가 깨진 상황) 비동기/동기로 aggregation과 사용자의 alacard를 대조해서 없는거를 aggregation에서 빼주는 로직도 추가 가능함
현재는 개발하지 않을 계획
The text was updated successfully, but these errors were encountered:
혹시 문제가 또 생긴다면,
aggregation에 단어 추가해주는 로직이 실행될 때(consistency가 깨진 상황) 비동기/동기로 aggregation과 사용자의 alacard를 대조해서 없는거를 aggregation에서 빼주는 로직도 추가 가능함
현재는 개발하지 않을 계획
The text was updated successfully, but these errors were encountered: