From 847fc098551bfb2ae810a2d0c5cfbcd0d09e9cd9 Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 3 Jul 2011 15:49:49 +0200 Subject: [PATCH] Fixed typo in redis.conf related to slow log parameters --- redis.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis.conf b/redis.conf index 4496f5415e..a01a9cd2bb 100644 --- a/redis.conf +++ b/redis.conf @@ -334,7 +334,7 @@ slowlog-log-slower-than 10000 # There is no limit to this length. Just be aware that it will consume memory. # You can reclaim memory used by the slow log with SLOWLOG RESET. -slowlog-log-len 1024 +slowlog-max-len 1024 ################################ VIRTUAL MEMORY ###############################