This repository was archived by the owner on May 22, 2025. It is now read-only.
4.0.0
·
11 commits
to main
since this release
[4.0.0] - 2022-12-07
This release corresponds to the 7.0.0 release of the LaunchDarkly server-side .NET SDK. Any application code that is being updated to use the 7.0.0 SDK, and was using a 3.x version of LaunchDarkly.ServerSdk.Redis
, should now use a 4.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.