Fix/univ search cache error#792
Conversation
|
Warning Review limit reached
More reviews will be available in 56 minutes and 39 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more credits in the billing tab to continue. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
Walkthrough이번 PR에는 두 가지 어노테이션 관련 변경이 포함되어 있어요. 😊
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Suggested reviewers
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
5ebc9c8 to
477a546
Compare
💡 Codex ReviewWhen a user has no ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
src/main/java/com/example/solidconnection/university/service/UnivApplyInfoQueryService.java (1)
45-46: 🚀 Performance & Scalability | 🔵 Trivial | ⚡ Quick win
- 캐시 비활성화 임시조치에 “재적용 조건”을 코드로 고정해 주세요.
- Line 46에서
@ThunderingHerdCaching를 주석 처리하면 검색 트래픽이 DB로 직행해 피크 구간 성능 리스크가 커집니다.- 주석만 두기보다
TODO(#이슈번호/기한)또는 feature flag로 복구 경로를 명시해, 임시조치가 영구화되지 않게 해주세요.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@src/main/java/com/example/solidconnection/university/service/UnivApplyInfoQueryService.java` around lines 45 - 46, 현재 `UnivApplyInfoQueryService`의 `@ThunderingHerdCaching`가 주석 처리된 임시 비활성화 상태를 그대로 두지 말고, 이 캐시 복구 조건을 코드에 고정해 주세요. `univApplyInfoTextSearch` 경로에서 캐시를 끄는 이유와 재적용 기준을 `TODO(`#이슈번호/기한`)`으로 명시하거나, `@ThunderingHerdCaching`을 feature flag로 제어하도록 바꿔 임시조치가 영구화되지 않게 하세요.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Nitpick comments:
In
`@src/main/java/com/example/solidconnection/university/service/UnivApplyInfoQueryService.java`:
- Around line 45-46: 현재 `UnivApplyInfoQueryService`의 `@ThunderingHerdCaching`가
주석 처리된 임시 비활성화 상태를 그대로 두지 말고, 이 캐시 복구 조건을 코드에 고정해 주세요. `univApplyInfoTextSearch`
경로에서 캐시를 끄는 이유와 재적용 기준을 `TODO(`#이슈번호/기한`)`으로 명시하거나, `@ThunderingHerdCaching`을
feature flag로 제어하도록 바꿔 임시조치가 영구화되지 않게 하세요.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: 6ac7d7e1-5dda-407c-86c5-5838152d9e91
📒 Files selected for processing (2)
src/main/java/com/example/solidconnection/siteuser/dto/MyPageResponse.javasrc/main/java/com/example/solidconnection/university/service/UnivApplyInfoQueryService.java
💤 Files with no reviewable changes (1)
- src/main/java/com/example/solidconnection/siteuser/dto/MyPageResponse.java
관련 이슈
캐시 문제로 인해 대학 리스트 출력 불가

작업 내용
주석 처리가 미 완성되어 있어 주석 처리를 했습니다.