summaryrefslogtreecommitdiff
path: root/src/slowlog.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2012-04-21 19:20:03 +0200
committerantirez <antirez@gmail.com>2012-04-21 20:34:45 +0200
commitd3701d27141b8e400ccdf5fbf22c504d112fab63 (patch)
treea6a0e876e7db17d47fb3a8125c1b93d7dfef3bb1 /src/slowlog.h
parentfd72fe261dc8ac1f6450dfb6197391bb530ac5a0 (diff)
downloadredis-d3701d27141b8e400ccdf5fbf22c504d112fab63.tar.gz
Limit memory used by big SLOWLOG entries.
Two limits are added: 1) Up to SLOWLOG_ENTRY_MAX_ARGV arguments are logged. 2) Up to SLOWLOG_ENTRY_MAX_STRING bytes per argument are logged. 3) slowlog-max-len is set to 128 by default (was 1024). The number of remaining arguments / bytes is logged in the entry so that the user can understand better the nature of the logged command.
Diffstat (limited to 'src/slowlog.h')
-rw-r--r--src/slowlog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slowlog.h b/src/slowlog.h
index bad770db4..bcc961cc9 100644
--- a/src/slowlog.h
+++ b/src/slowlog.h
@@ -1,3 +1,6 @@
+#define SLOWLOG_ENTRY_MAX_ARGC 32
+#define SLOWLOG_ENTRY_MAX_STRING 128
+
/* This structure defines an entry inside the slow log list */
typedef struct slowlogEntry {
robj **argv;