-
Notifications
You must be signed in to change notification settings - Fork 3
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
카테고리 조회 성능 개선 #334
Merged
Merged
카테고리 조회 성능 개선 #334
Conversation
This file contains 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
부모 id와 자식 id를 복합 index로 지정
부모와 자식 projection 객체 분리하여 구현부의 유연성과 쿼리 개선 여지 증대
header 요청의 응답 객체를 projection 객체로 변환
카테고리 조회 쿼리들을 projection을 사용해 개선
1. 쿼리 개선에 따른 DTO 변환 로직 제거 2. 캐싱을 통해 DB 질의수 절감
캐싱 설정 활성화
캐싱 DTO가 생성 시점에 기본 생성자로 적용되기 때문에 DTO 수정
성능 개선으로 일부 변경된 로직들에 따라 테스트 코드 수정
카테고리 복합 인덱스 추가
사용하지 않는 생성자를 제거 후 클래스에 builder 적용
1. 캐싱 적용에 따라 기본 생성자 생성 2. 쿼리 변경에 따라 기존에 사용하던 로직들 제거
`CategoryDto`변화에 따른 테스트코드 수정
kmw2378
reviewed
Jul 22, 2024
src/main/java/org/kakaoshare/backend/domain/category/dto/CategoryDto.java
Show resolved
Hide resolved
src/main/java/org/kakaoshare/backend/domain/category/dto/CategoryDto.java
Show resolved
Hide resolved
kmw2378
approved these changes
Jul 25, 2024
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.
#️⃣연관된 이슈
close #329
📝작업 내용
✅테스트 결과
🙏리뷰 요구사항(선택)
mass가 큰 기능은 아니라 개선 작업이 많지는 않습니다만, 캐싱 가능성이 높은 쿼리들이 있어 캐싱으로 성능을 대폭 개선하였습니다
자세한 내용은 위의 notion 기록 확인해주시면 감사하겠습니다