LaunchDarklyReleaseBot
released this
07 Dec 18:27
·
9 commits
to main
since this release
[3.0.0] - 2022-12-07
This release corresponds to the 6.0.0 release of the LaunchDarkly Java SDK. Any application code that is being updated to use the 6.0.0 SDK, and was using a 2.x version of launchdarkly-java-server-sdk-redis
, should now use a 3.x version instead.
There are no functional differences in the behavior of the Redis integration; the differences are only related to changes in the usage of interface types for configuration in the SDK.
Added:
Redis.bigSegmentStore()
, which creates a configuration builder for use with Big Segments. Previously, theRedis.dataStore()
builder was used for both regular data stores and Big Segment stores.
Changed:
- The type
RedisDataStoreBuilder
has been removed, replaced by a generic typeRedisStoreBuilder
. Application code would not normally need to reference these types by name, but if necessary, use eitherRedisStoreBuilder<PersistentDataStore>
orRedisStoreBuilder<BigSegmentStore>
depending on whether you are configuring a regular data store or a Big Segment store.