We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
사용자는 카트에 담긴 상품들을 결재할 수 있다. 따라서 결재하기에 앞서 주문하고자 하는 상품을 카트에 담는 과정이 선행되어야 한다.
현재의 코드는 동시성 제어가 부재인 상황이기 때문에, 사용자의 중복 요청(일명 따닥)이 발생하는 경우 중복 결재가 발생할 우려가 있다.
The text was updated successfully, but these errors were encountered:
Hyeon-Uk
Dr-KoKo
Successfully merging a pull request may close this issue.
동작 과정
배경
사용자는 카트에 담긴 상품들을 결재할 수 있다. 따라서 결재하기에 앞서 주문하고자 하는 상품을 카트에 담는 과정이 선행되어야 한다.
현재의 코드는 동시성 제어가 부재인 상황이기 때문에, 사용자의 중복 요청(일명 따닥)이 발생하는 경우 중복 결재가 발생할 우려가 있다.
The text was updated successfully, but these errors were encountered: