Skip to content
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

다락방 별 모임을 조회하는 API의 요청 응답 속도 개선 #796

Merged
merged 1 commit into from
Nov 25, 2024

Conversation

Mingyum-Kim
Copy link
Contributor

PR의 목적이 무엇인가요?

이슈 ID는 무엇인가요?

설명

메인 페이지에서 다락방 별 모임을 조회하고 있습니다.
다락방 별 모임을 개수를 100건으로 설정하고 API 요청 테스트를 보내보니, 응답까지 1500ms 이상의 시간이 걸리는 것을 알 수 있었습니다.

인덱스를 적용하여도 약 800ms 까지만 성능이 개선되었습니다.
조금 더 개선할 수 있는 부분을 찾다가, 서비스 코드에서 모든 모임에 대해 참여와 찜 정보를 매번 쿼리를 날려 조회하고 있음을 알 수 있었습니다.
N개의 모임 객체가 있다면 항상 2N번 추가 쿼리가 나가는 상황입니다.
그래서 IN을 사용해 한 번에 모임 정보에 대한 모든 참여와 찜 정보를 가져오는 것으로 수정하였습니다. 이렇게 수정하니 100ms의 속도로 개선됨을 확인하였습니다.

질문 혹은 공유 사항 (Optional)

@Mingyum-Kim Mingyum-Kim added BE 백엔드 관련 이슈입니다. ⚒️ 리팩터링 refactor (기능이 변경되지는 않지만 코드를 수정) labels Oct 31, 2024
@Mingyum-Kim Mingyum-Kim self-assigned this Oct 31, 2024
Copy link
Contributor

@ay-eonii ay-eonii left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

안나의 성장 속도 무서워요

+develop-backend pull 땡기셨져?

@ay-eonii ay-eonii merged commit 98b19c3 into develop-backend Nov 25, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BE 백엔드 관련 이슈입니다. ⚒️ 리팩터링 refactor (기능이 변경되지는 않지만 코드를 수정)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants