Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 2.46 KB

JsonSchemaRedis.md

File metadata and controls

56 lines (36 loc) · 2.46 KB

JsonSchemaRedis

Properties

Name Type Description Notes
ssl Boolean [optional]
lfuLogFactor Integer [optional]
maxmemoryPolicy MaxmemoryPolicyEnum [optional]
ioThreads Integer Set Redis IO thread count. Changing this will cause a restart of the Redis service. [optional]
lfuDecayTime Integer [optional]
pubsubClientOutputBufferLimit Integer Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan. [optional]
notifyKeyspaceEvents String [optional]
persistence PersistenceEnum When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked. [optional]
timeout Integer [optional]
aclChannelsDefault AclChannelsDefaultEnum Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default. [optional]
numberOfDatabases Integer Set number of Redis databases. Changing this will cause a restart of the Redis service. [optional]

Enum: MaxmemoryPolicyEnum

Name Value
NOEVICTION "noeviction"
ALLKEYS_LRU "allkeys-lru"
VOLATILE_LRU "volatile-lru"
ALLKEYS_RANDOM "allkeys-random"
VOLATILE_RANDOM "volatile-random"
VOLATILE_TTL "volatile-ttl"
VOLATILE_LFU "volatile-lfu"
ALLKEYS_LFU "allkeys-lfu"

Enum: PersistenceEnum

Name Value
OFF "off"
RDB "rdb"

Enum: AclChannelsDefaultEnum

Name Value
ALLCHANNELS "allchannels"
RESETCHANNELS "resetchannels"