Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 데이터 정합성을 맞추는 스케줄러를 작성한다. #755

Closed
Ohzzi opened this issue Oct 13, 2022 · 0 comments · Fixed by #790
Closed

[BE] 데이터 정합성을 맞추는 스케줄러를 작성한다. #755

Ohzzi opened this issue Oct 13, 2022 · 0 comments · Fixed by #790
Assignees
Labels
🖥️ backend 백엔드 🔨 feature 기능 추가

Comments

@Ohzzi
Copy link
Collaborator

Ohzzi commented Oct 13, 2022

목표

  • 팔로우 시 동시성 문제로 유저의 팔로워 수의 정합성이 맞지 않는 문제가 발생한다.
    • 팔로잉을 데이터베이스에 insert하기 전 Member를 조회한 후 다른 트랜잭션이 팔로우 생성 쿼리 및 Member update 쿼리를 실행한 경우 팔로워 수 변화가 유실된다.
    • 언팔로우의 경우에도 유사한 상황이 발생한다.
  • 사용자는 구체적으로 누가 팔로우 하고 있는지 확인하지 않고, 팔로워 수만 확인하도록 구현되어 있으므로, 팔로우 버튼을 눌렀을 때 팔로잉 숫자가 올라가기만 하면 된다. 따라서 실시간 정합성이 크게 중요하지 않으므로(최소한 팔로워 카운트가 1은 올라갈 것이므로) 스케줄러를 통해 정합성을 맞춘다.

주의사항(Optional)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🖥️ backend 백엔드 🔨 feature 기능 추가
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant