
This includes comments used for module API documentation. * Strategy for replacement: Regex search: `(//|/\*| \*|#).* ("|\()?(r|R)edis( |\. |'|\n|,|-|\)|")(?!nor the names of its contributors)(?!Ltd.)(?!Labs)(?!Contributors.)` * Don't edit copyright comments * Replace "Redis version X.X" -> "Redis OSS version X.X" to distinguish from newly licensed repository * Replace "Redis Object" -> "Object" * Exclude markdown for now * Don't edit Lua scripting comments referring to redis.X API * Replace "Redis Protocol" -> "RESP" * Replace redis-benchmark, -cli, -server, -check-aof/rdb with "valkey-" prefix * Most other places, I use best judgement to either remove "Redis", or replace with "the server" or "server" Fixes #148 --------- Signed-off-by: Jacob Murphy <jkmurphy@google.com> Signed-off-by: Viktor Söderqvist <viktor.soderqvist@est.tech>
38 lines
767 B
Plaintext
38 lines
767 B
Plaintext
# Server configuration for testing.
|
|
|
|
always-show-logo yes
|
|
notify-keyspace-events KEA
|
|
daemonize no
|
|
pidfile /var/run/redis.pid
|
|
port 6379
|
|
timeout 0
|
|
bind 127.0.0.1
|
|
loglevel verbose
|
|
logfile ''
|
|
databases 16
|
|
latency-monitor-threshold 1
|
|
repl-diskless-sync-delay 0
|
|
|
|
# Turn off RDB by default (to speedup tests)
|
|
# Note the infrastructure in server.tcl uses a dict, we can't provide several save directives
|
|
save ''
|
|
|
|
rdbcompression yes
|
|
dbfilename dump.rdb
|
|
dir ./
|
|
|
|
slave-serve-stale-data yes
|
|
appendonly no
|
|
appendfsync everysec
|
|
no-appendfsync-on-rewrite no
|
|
activerehashing yes
|
|
|
|
enable-protected-configs yes
|
|
enable-debug-command yes
|
|
enable-module-command yes
|
|
|
|
propagation-error-behavior panic
|
|
|
|
# Make sure shutdown doesn't fail if there's an initial AOFRW
|
|
shutdown-on-sigterm force
|