#50 오늘의 맛집 조회수 랭킹 빈 값 반환 문제 폴백으로 해결 - #159
Merged
Merged
Conversation
- 오늘 조회 데이터가 부족한 새벽/저트래픽 구간에 빈 랭킹이 나오던 문제 수정 - getDailyRankingByViews를 폴백 체인으로 변경 (오늘 3곳 이상 → 어제 3곳 이상 → 전체 누적 조회수) - 누적 조회수 랭킹 쿼리 findTopByCampusOrderByViewCount 추가 - 랭킹 메서드 공통 로직을 buildRankingResponse 헬퍼로 추출 - 오늘의 맛집 폴백 시나리오 통합 테스트 추가
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
요약
오늘 조회 데이터가 없을 때 "오늘의 맛집"이 빈 값을 반환하던 버그를, 스케줄러·캐시 없이 오늘→어제→전체 누적 조회수 순으로 폴백하도록 해결합니다.
What — 무엇을 바꿨나
getDailyRankingByViews를 오늘→어제→전체 누적 조회수 순으로 폴백하도록 변경 (각 단계 3곳 이상일 때 사용)PlaceRepository.findTopByCampusOrderByViewCount추가 (누적 조회수 랭킹)buildRankingResponse(List<Place>)공통 헬퍼로 추출PlaceReadServiceTest)Why — 왜 필요한가 (#50)
getDailyRankingByViews가 오늘 날짜의DailyViewCount행만 조회 → 조회가 발생해야 행이 생기므로, 매일 자정 직후·저트래픽 구간엔 오늘 행이 없어 빈 리스트를 반환How — 어떻게 구현했나
RANKING_SIZE(3)로 통일Place.viewCount컬럼 기준이라 조회 이력이 0이어도 승인 맛집을 반환 → 승인 맛집이 3곳 이상이면 절대 빈 값이 나오지 않음체크리스트
./gradlew test)관련 이슈