IWithCreate.WithRedisConfiguration Method

Definition

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.Definition.IWithCreate WithRedisConfiguration (System.Collections.Generic.IDictionary<string,string> redisConfiguration);
abstract member WithRedisConfiguration : System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Redis.Fluent.RedisCache.Definition.IWithCreate
Public Function WithRedisConfiguration (redisConfiguration As IDictionary(Of String, String)) As IWithCreate

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.Definition.IWithCreate WithRedisConfiguration (string key, string value);
abstract member WithRedisConfiguration : string * string -> Microsoft.Azure.Management.Redis.Fluent.RedisCache.Definition.IWithCreate
Public Function WithRedisConfiguration (key As String, value As String) As IWithCreate

Parameters

key
String

Redis configuration name.

value
String

Redis configuration value.

Returns

Applies to