refactor: replace Redis references with Valkey in tests and cache modules
Updated test cases in `ValkeyEventStoreTest` and cache implementation in `ValkeyDistributedCache` to fully transition from Redis to Valkey. Adjusted configurations, templates, connection handling, and exception management to reflect Valkey-specific behavior and APIs.
This commit is contained in:
@@ -28,6 +28,13 @@ dependencies {
|
||||
// OPTIMIERUNG: Verwendung des `valkey-cache`-Bundles aus libs.versions.toml.
|
||||
// Dieses Bundle enthält Spring Data Valkey, Lettuce und Jackson-Module.
|
||||
implementation(libs.bundles.valkey.cache)
|
||||
// Benötigt für Lettuce-basierten Valkey-Client (LettuceConnectionFactory)
|
||||
implementation(libs.lettuce.core)
|
||||
// Für Boot-Autoconfiguration-Annotations wie @ConfigurationProperties,
|
||||
// @EnableConfigurationProperties und @ConditionalOnMissingBean
|
||||
implementation("org.springframework.boot:spring-boot-autoconfigure")
|
||||
// Optional, generiert Metadata f. @ConfigurationProperties (zur IDE-Unterstützung)
|
||||
compileOnly("org.springframework.boot:spring-boot-configuration-processor")
|
||||
// Stellt alle Test-Abhängigkeiten gebündelt bereit.
|
||||
testImplementation(projects.platform.platformTesting)
|
||||
testImplementation(libs.bundles.testing.jvm)
|
||||
|
||||
Reference in New Issue
Block a user