You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
결과값이 고정되어 있거나 빈번한 변화가 없을 것으로 예상되는 조회 메서드
[ EmotionService ] getEmotions() / readEmotion(Long emotionId) / getAllEmotionsIds()
[ ReportService ] getReportCategories() / readReportCategory(Long reportCategoryId) public method만 사용 가능 ㅠ
목적
동일한 결과값을 반환하는 조회 메서드에 캐시를 설정하여 DB 접근 비용을 줄이고 데이터 접근 속도를 높인다.
체크리스트
[ EmotionService ] getEmotions() / readEmotion(Long emotionId) / getAllEmotionsIds()
[ ReportService ] getReportCategories() /
readReportCategory(Long reportCategoryId)public method만 사용 가능 ㅠ주의 사항
관련 이슈
일정
# 레퍼런스
# 실제로 캐시를 적용했을 때의 수행시간 테스트!
처음 요청을 수행할 때만 시간이 걸리고, 그 다음부터는 캐시한 결과값을 사용하기 때문에 시간이 걸리지 않네요 😋
라이브러리가 잘되어 있어서 적용 부분은 레퍼런스를 참조하시면 충분할 것 같습니다~
The text was updated successfully, but these errors were encountered: