This repository was archived by the owner on Jul 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ CentOS-7 7.5.1804 x86_64 - Redis 4.0.
1515- Adds ` SSH_AUTOSTART_SUPERVISOR_STDOUT ` with a value "false", disabling startup of ` supervisor_stdout ` .
1616- Adds improved ` healtchcheck ` script.
1717- Adds ` docker-compose.yml ` to ` .dockerignore ` .
18+ - Disables disk persistence by default; primary use-case being an LRU cache.
1819
1920### 2.1.0 - 2019-02-17
2021
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ ADD src /
2727RUN sed -i -r \
2828 -e "s~^(logfile ).+$~\1\"\" ~" \
2929 -e "s~^(bind ).+$~\1 0.0.0.0~" \
30+ -e "s~^(save [0-9]+ [0-9]+)~#\1 ~" \
3031 -e "s~^(# *)?(maxmemory ).+$~\2 {{REDIS_MAXMEMORY}}~" \
3132 -e "s~^(# *)?(maxmemory-policy ).+$~\2 {{REDIS_MAXMEMORY_POLICY}}~" \
3233 -e "s~^(# *)?(maxmemory-samples ).+$~\2 {{REDIS_MAXMEMORY_SAMPLES}}~" \
Original file line number Diff line number Diff line change @@ -259,10 +259,10 @@ function main ()
259259 Redis Details
260260 --------------------------------------------------------------------------------
261261 maxmemory : ${redis_maxmemory}
262- maxmemory-policy: ${redis_maxmemory_policy}
263- maxmemory-samples: ${redis_maxmemory_samples}
264- tcp-backlog: ${redis_tcp_backlog}
265- redis-server options: ${redis_options}
262+ maxmemory-policy : ${redis_maxmemory_policy}
263+ maxmemory-samples : ${redis_maxmemory_samples}
264+ tcp-backlog : ${redis_tcp_backlog}
265+ redis-server options : ${redis_options}
266266 --------------------------------------------------------------------------------
267267 ${timer_total}
268268
You can’t perform that action at this time.
0 commit comments