-
Notifications
You must be signed in to change notification settings - Fork 1
fix: 캐시 키 생성 문제 수정 및 캐시 워밍업 인프라 개선 #113
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
cca0a0f
a0fabac
a742381
ab107ee
cc21884
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 |
|---|---|---|
| @@ -1,10 +1,9 @@ | ||
| package until.the.eternity.auctionhistory.domain.service.fetcher; | ||
|
|
||
| import java.util.List; | ||
| import until.the.eternity.auctionhistory.interfaces.external.dto.OpenApiAuctionHistoryResponse; | ||
| import until.the.eternity.common.enums.ItemCategory; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| public interface AuctionHistoryFetcherPort { | ||
| List<OpenApiAuctionHistoryResponse> fetch(ItemCategory category); | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,7 +1,6 @@ | ||||||
| package until.the.eternity.auctionhistory.interfaces.rest.dto.request; | ||||||
|
|
||||||
| import io.swagger.v3.oas.annotations.media.Schema; | ||||||
|
|
||||||
| import java.time.LocalDate; | ||||||
| import java.util.List; | ||||||
|
|
||||||
|
|
@@ -28,6 +27,10 @@ public record AuctionHistorySearchRequest( | |||||
| List<MetalwareSearchRequest> metalwareSearchRequests) { | ||||||
|
|
||||||
| public AuctionHistorySearchRequest { | ||||||
| if (isExactItemName == null) { | ||||||
| isExactItemName = true; | ||||||
|
||||||
| isExactItemName = true; | |
| isExactItemName = false; |
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.
Passing the Redis password via
-aon the command line will cause Redis CLI to emit a warning about the password being visible in process listings. While this is a health check and the exposure is limited, consider usingREDISCLI_AUTHenvironment variable instead to avoid leaking the password inpsoutput.