Files
packages/libs/valkey/files/valkey.config
T
Matthew Cather fdcb89b61e valkey: add new package
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>
2026-04-24 06:51:29 +03:00

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'