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

✨ Feat: API 응답 캐싱을 통한 브리핑 V2 조회 속도 개선 #142

Merged
merged 3 commits into from
Jan 5, 2024

Conversation

swa07016
Copy link
Member

@swa07016 swa07016 commented Jan 5, 2024

🚀 개요

  • close 🚀 [feature] 브리핑 목록 조회 API 응답 캐싱 #118
    자주 호출되고 응답이 잘 바뀌지 않는 브리핑 목록 조회 API 응답을 캐싱하여 조회 속도를 개선했습니다.
    실제로 개선된 지표와 개발과정은 블로그 글을 통해 자세히 기록하겠습니다.

⏳ 작업 내용

  • 캐시 이름은 컨트롤러 메소드명(findBriefingsV2)으로 작성했으며, responseCache라는 접두사를 붙도록 해두었습니다.
  • 파라미터별로 응답이 다르게 캐싱되어야하므로 키는 #params.toString()으로 작성했습니다.
  • 스크랩개수 정합성을 보장하기 위하여 스크랩 & 취소시에 캐시를 비우도록 했습니다.

📝 논의사항

현재는 스크랩시, 스크랩 취소 시 해당하는 브리핑이 포함된 값들만 비우지않고, findBriefingsV2캐시의 모든 값을 비웁니다.
이 부분은 포함된 값들만 찾아서 비울 것인지 고민을 조금 더 해봐야할 것 같습니다. 정확히하려면 API 로그를 분석해서 스크랩이 발생하는 비율을 따져보고 결정해야할 것 같습니다. 개인적으로는 쓸데없이 검사하는 비용을 더 들이는 느낌이라서 지금처럼 유지해도 좋다고 생각합니다.

@swa07016 swa07016 added the ✨ feature New feature or request label Jan 5, 2024
@swa07016 swa07016 requested a review from CYY1007 January 5, 2024 05:27
@swa07016 swa07016 self-assigned this Jan 5, 2024
@swa07016 swa07016 linked an issue Jan 5, 2024 that may be closed by this pull request
1 task
@swa07016 swa07016 merged commit c6ed247 into develop Jan 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ feature New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

🚀 [feature] 브리핑 목록 조회 API 응답 캐싱
1 participant