You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/java-server-sdk-redis-store/CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
All notable changes to the LaunchDarkly Java SDK Redis integration will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
***java-server-sdk-redis-store:** Add username/password authentication support for Redis 6.0+ ([#96](https://github.com/launchdarkly/java-core/issues/96)) ([75625f3](https://github.com/launchdarkly/java-core/commit/75625f3ec5fbe198db48ab6ea48a7628fa3b82df))
**Note:** Username/password authentication requires Jedis 3.6.0 or later.
85
+
48
86
## Caching behavior
49
87
50
88
The LaunchDarkly SDK has a standard caching mechanism for any persistent data store, to reduce database traffic. This is configured through the SDK's `PersistentDataStoreBuilder` class as described the SDK documentation. For instance, to specify a cache TTL of 5 minutes:
Copy file name to clipboardExpand all lines: lib/java-server-sdk-redis-store/src/main/java/com/launchdarkly/sdk/server/integrations/RedisStoreBuilder.java
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,7 @@ public abstract class RedisStoreBuilder<T> implements ComponentConfigurer<T>, Di
Copy file name to clipboardExpand all lines: lib/java-server-sdk-redis-store/src/main/java/com/launchdarkly/sdk/server/integrations/RedisStoreImplBase.java
Copy file name to clipboardExpand all lines: lib/java-server-sdk-redis-store/src/main/java/com/launchdarkly/sdk/server/integrations/RedisURIComponents.java
+39Lines changed: 39 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,39 @@
8
8
* that class doesn't exist in the same location in both versions.
Copy file name to clipboardExpand all lines: lib/java-server-sdk-redis-store/src/test/java/com/launchdarkly/sdk/server/integrations/RedisBigSegmentStoreImplTest.java
0 commit comments