Safe Haskell | None |
---|---|
Language | Haskell2010 |
The public interface for the LaunchDarkly Haskell Redis integration
Documentation
data RedisStoreConfig Source #
Opaque type used to configure the Redis store integration.
makeRedisStoreConfig :: Connection -> RedisStoreConfig Source #
Create a default config from a given connection pool.
redisConfigSetNamespace :: Text -> RedisStoreConfig -> RedisStoreConfig Source #
Configure the Redis key prefix. All keys are prefixed by default before being inserted into Redis. The default prefix is "launchdarkly".
makeRedisStore :: RedisStoreConfig -> IO PersistentDataStore Source #
Construct a PersistentDataStore
that can then be used during SDK
configuration.