-
Notifications
You must be signed in to change notification settings - Fork 1
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
IS-3066: Use valkey-cache #578
Conversation
private val redisConfig = environment.redisConfig | ||
val redisCache = RedisStore( | ||
private val redisConfig = environment.valkeyConfig | ||
val redisCache = ValkeyStore( |
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.
cache
eller valkeyStore
?
val redisCache = ValkeyStore( | |
val cache = ValkeyStore( |
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.
Vi bruker faktisk en test-redis her (embedded-redis), så tenker det er greit at det fortsatt er reflektert i navnet..
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.
Aha 💡
.build() | ||
) | ||
) | ||
val redisServer = testRedis(environment) | ||
val redisServer = testValkey(environment) |
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.
cacheServer
eller bare valkeyServer
? 😊
val redisServer = testValkey(environment) | |
val cacheServer = testValkey(environment) |
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.
Vi bruker faktisk en test-redis her (embedded-redis), så tenker det er greit at det fortsatt er reflektert i navnet..
Bytter til Valkey cache på Aiven