]> git.saurik.com Git - redis.git/blobdiff - src/slowlog.h
Merge remote-tracking branch 'origin/unstable' into unstable
[redis.git] / src / slowlog.h
index 45a500555df828324c47d3c782f3f17b24cc7452..bcc961cc9c5db078547f155d382c46b619e47e94 100644 (file)
@@ -1,7 +1,11 @@
+#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;
     int argc;
+    long long id;       /* Unique entry identifier. */
     long long duration; /* Time spent by the query, in nanoseconds. */
     time_t time;        /* Unix time at which the query was executed. */
 } slowlogEntry;