mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
fdcb89b61e
Valkey is a community fork of the key-value database Redis. It is a drop in replacement to Redis so most of the files are derived from their Redis equivalent. Co-authored-by: George Sapkin <george@sapk.in> Signed-off-by: Matthew Cather <mattbob4@gmail.com>
14 lines
344 B
Plaintext
14 lines
344 B
Plaintext
config instance 'main'
|
|
option enabled '1'
|
|
option port '6379'
|
|
option bind '127.0.0.1'
|
|
option dir '/var/lib/valkey'
|
|
option logfile '/var/log/valkey.log'
|
|
option maxmemory '64mb'
|
|
option maxmemory_policy 'allkeys-lru'
|
|
list save '900 1'
|
|
list save '300 10'
|
|
list save '60 10000'
|
|
option appendonly '0'
|
|
option appendfilename 'appendonly.aof'
|