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
/v1/api/record/reply : POST 로 부원이 정답 제출 요청을 보낼 때 같은 값에 대해 여러번 요청을 보내더라도 실제 도메인에선 이를 1번만 처리하는 ‘POST API의 멱등성’을 구현
/v1/api/record/reply
멱등성 키에 대해 결과를 저장한 멱등성 DB 세팅
Redis를 활용한 IdempotencyRepository 를 통해 구현
IdempotencyRepository
도메인 로직과 컨트롤러가 호출되기 이전에 멱등성 처리를 구현
플로우 정리
Idempotency-Key
유의 사항
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🪶 추가할 기능 설명
/v1/api/record/reply
: POST 로 부원이 정답 제출 요청을 보낼 때 같은 값에 대해 여러번 요청을 보내더라도 실제 도메인에선 이를 1번만 처리하는 ‘POST API의 멱등성’을 구현✅ 작업 내용
멱등성 키에 대해 결과를 저장한 멱등성 DB 세팅
Redis를 활용한
IdempotencyRepository
를 통해 구현도메인 로직과 컨트롤러가 호출되기 이전에 멱등성 처리를 구현
스크린샷 (선택)
🔗 참고한 링크 (선택)
ETC
플로우 정리
Idempotency-Key
헤더에 멱등성 키를 넣고 요청을 보냄유의 사항
The text was updated successfully, but these errors were encountered: