-
Notifications
You must be signed in to change notification settings - Fork 8
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] 동시 요청 시 발생할 수 있는 중복 회원 생성 문제를 해결한다. #443
Comments
xxeol2
changed the title
[BE] 회원가입의 동시성 문제를 처리한다.
[BE] 동시 요청 시 발생할 수 있는 중복 회원 생성 문제를 해결한다.
Sep 15, 2023
This was referenced Sep 15, 2023
seokjin8678
pushed a commit
that referenced
this issue
Sep 18, 2023
BGuga
pushed a commit
that referenced
this issue
Oct 17, 2023
BGuga
pushed a commit
that referenced
this issue
Oct 17, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
✨ 세부 내용
한 유저의 회원가입 요청이 동시에 여러번 전송되면 같은 socialId & socialType인 유저가 여러명 생성됩니다.따닥 문제
로 동시에 요청이 두번 들어오면 두 요청 모두findBySocialIdAndSocialType
에서 orElseGet 플로우로 가 signUp메서드를 실행합니다.이를 방지하기 위해 Member테이블의 (socialId, socialType) 복합 Unique 제약조건을 겁니다.
⏰ 예상 소요 시간
30분
The text was updated successfully, but these errors were encountered: