23 lines
388 B
YAML
23 lines
388 B
YAML
|
|
# NodeZero Redis Configuration Template
|
||
|
|
redis:
|
||
|
|
host: localhost
|
||
|
|
port: 6379
|
||
|
|
password: "${REDIS_PASSWORD}"
|
||
|
|
db: 0
|
||
|
|
|
||
|
|
# Cache configuration
|
||
|
|
cache:
|
||
|
|
default_ttl: 3600
|
||
|
|
max_memory: 4gb
|
||
|
|
eviction_policy: allkeys-lru
|
||
|
|
|
||
|
|
# Mesh connection
|
||
|
|
mesh:
|
||
|
|
enabled: true
|
||
|
|
connection_timeout_ms: 5000
|
||
|
|
|
||
|
|
# Persistence
|
||
|
|
persistence:
|
||
|
|
save: "60 1"
|
||
|
|
appendfile: "appendonly.aof"
|