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.
🤔세부 내용
1. 주차장 테이블에서 location 공간 인덱스 적용
<기존>
<적용후>
테이블 풀 스캔 -> 인덱스 레인지 스캔
14,000개의 주차장 데이터에서 50명의 유저가 목적지 반경 500m의 주차장을 10번씩 조회 시 평균 응답 시간 3853ms -> 164ms로 개선
2. 리뷰 테이블에서 (주차장 id, 회원 id) 복합 인덱스 적용
리뷰 생성시 사용
<기존>
<적용후>
주차장 상세 조회시 사용
<기존>
<적용후>
리뷰가 50개 존재하는 주차장을 50명의 유저가 10번씩 상세조회 했을 때 평균 응답 시간 1507ms -> 137ms로 개선
3. 조회 조건 테이블에서 회원 id 인덱스 적용
<기존>
<적용후>
🫵리뷰 중점사항