From 90e85861a53aef3958578a3fa8f3c9927903fe45 Mon Sep 17 00:00:00 2001 From: Gregory Duchatelet Date: Mon, 20 Feb 2023 09:55:36 +0100 Subject: [PATCH] disable redis persistence --- redis-cluster.tmpl | 3 ++- redis.tmpl | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/redis-cluster.tmpl b/redis-cluster.tmpl index 8205123..cbbe0fb 100644 --- a/redis-cluster.tmpl +++ b/redis-cluster.tmpl @@ -3,5 +3,6 @@ port ${PORT} cluster-enabled yes cluster-config-file nodes.conf cluster-node-timeout 5000 -appendonly yes +appendonly no +save "" dir /redis-data/${PORT} diff --git a/redis.tmpl b/redis.tmpl index bf6002a..5fb28b4 100644 --- a/redis.tmpl +++ b/redis.tmpl @@ -1,4 +1,5 @@ bind ${BIND_ADDRESS} port ${PORT} -appendonly yes +appendonly no +save "" dir /redis-data/${PORT}