Refactor: 팀 결정사항 목록 조회 N+1 개선#26
Merged
Merged
Conversation
Contributor
|
아주굿 |
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.
🎯 작업 내용
주요 변경사항
DecisionResponse.DecisionFlatRow를 추가해 목록 응답에 필요한 컬럼만 조회하도록 수정했습니다.decisionId기준으로 그룹핑해 기존DecisionListDTO응답 형태를 유지했습니다.상세 내용
@OneToOne기본 EAGER 로딩이 됐습니다.목록 조회에서는 분석 결과가 필요하지 않아서
Meeting엔티티를 직접 로딩하지 않고 필요한 컬럼만 조회해meeting_analysisN+1 쿼리를 제거했습니다.✅ 체크리스트
📋 API 명세서
💬 리뷰 요청사항 (선택)
📚 참고 자료 (선택)