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 @@ -16,6 +16,7 @@ CentOS-6 6.10 x86_64 - Redis 3.2.
1616- Adds ` SSH_AUTOSTART_SUPERVISOR_STDOUT ` with a value "false", disabling startup of ` supervisor_stdout ` .
1717- Adds improved ` healtchcheck ` script.
1818- Adds ` docker-compose.yml ` to ` .dockerignore ` .
19+ - Disables disk persistence by default; primary use-case being an LRU cache.
1920
2021### 1.1.0 - 2019-02-17
2122
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ ADD src /
2424RUN sed -i -r \
2525 -e "s~^(logfile ).+$~\1\"\" ~" \
2626 -e "s~^(bind ).+$~\1 0.0.0.0~" \
27+ -e "s~^(save [0-9]+ [0-9]+)~#\1 ~" \
2728 -e "s~^(# *)?(maxmemory ).+$~\2 {{REDIS_MAXMEMORY}}~" \
2829 -e "s~^(# *)?(maxmemory-policy ).+$~\2 {{REDIS_MAXMEMORY_POLICY}}~" \
2930 -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