Class RedisProviderConfiguration
Represents the configuration settings for the Redis cache provider.
Inherited Members
Namespace: Innovt.Cloud.AWS.Caching
Assembly: Innovt.Cloud.AWS.Caching.dll
Syntax
public class RedisProviderConfiguration
Properties
| Edit this page View SourceConnectTimeout
Gets or sets the maximum time (in milliseconds) to wait for a connection to the Redis server.
Declaration
public int? ConnectTimeout { get; set; }
Property Value
Type | Description |
---|---|
int? |
PoolTimeOutInSeconds
Gets or sets the maximum time (in seconds) that a client is allowed to wait to acquire a connection from the pool.
Declaration
public int PoolTimeOutInSeconds { get; set; }
Property Value
Type | Description |
---|---|
int |
ReadOnlyHosts
Gets or sets the list of Redis hosts that support only read operations.
Declaration
public IEnumerable<string> ReadOnlyHosts { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
ReadWriteHosts
Gets or sets the list of Redis hosts that support both read and write operations.
Declaration
public IEnumerable<string> ReadWriteHosts { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |