-
Notifications
You must be signed in to change notification settings - Fork 1
perf: 경매장 테이블 기본 정렬 조건을 단일 인덱스로 추가 #108
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| -- 검색 필터 없이 검색 시 사용되는 기본 검색 속도 보장 인덱스 | ||
|
||
| CREATE INDEX idx_ah_date_auction_buy | ||
| ON auction_history (date_auction_buy); | ||
|
Comment on lines
+2
to
+3
|
||
|
|
||
| -- 검색 필터 없이 검색 시 사용되는 기본 검색 속도 보장 인덱스 | ||
| CREATE INDEX idx_ah_auction_price_per_unit | ||
| ON auction_history (auction_price_per_unit); | ||
|
|
||
| -- 검색 필터 없이 검색 시 사용되는 기본 검색 속도 보장 인덱스 | ||
| CREATE INDEX idx_ar_date_auction_expire | ||
| ON auction_realtime_item (date_auction_expire); | ||
|
|
||
| -- 검색 필터 없이 검색 시 사용되는 기본 검색 속도 보장 인덱스 | ||
| CREATE INDEX idx_ar_auction_price_per_unit | ||
| ON auction_realtime_item (auction_price_per_unit); | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The p6spy logging has been enabled (changed from false to true). This change appears unrelated to the PR's stated purpose of adding indexes for performance. P6spy logs all SQL statements which can significantly impact performance in production environments and generate large amounts of log data. If this change is intentional for debugging purposes, it should be documented in the PR description. Otherwise, this should be reverted to false.