IWithRedisConfiguration.WithRedisConfiguration Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WithRedisConfiguration(IDictionary<String,String>) |
All Redis Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set -max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. |
WithRedisConfiguration(String, String) |
Specifies Redis Setting. rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set -max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. |
WithRedisConfiguration(IDictionary<String,String>)
All Redis Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set -max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
public Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate WithRedisConfiguration (System.Collections.Generic.IDictionary<string,string> redisConfiguration);
abstract member WithRedisConfiguration : System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate
Public Function WithRedisConfiguration (redisConfiguration As IDictionary(Of String, String)) As IUpdate
Parameters
- redisConfiguration
- IDictionary<String,String>
Configuration of Redis Cache as a map indexed by configuration name.
Returns
Applies to
WithRedisConfiguration(String, String)
Specifies Redis Setting. rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set -max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
public Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate WithRedisConfiguration (string key, string value);
abstract member WithRedisConfiguration : string * string -> Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate
Public Function WithRedisConfiguration (key As String, value As String) As IUpdate
Parameters
- key
- String
Redis configuration name.
- value
- String
Redis configuration value.
Returns
Applies to
Azure SDK for .NET