]> git.saurik.com Git - redis.git/blobdiff - src/slowlog.h
added output list and buffer length, query buffer size, to CLIENT LIST output.
[redis.git] / src / slowlog.h
index 45a500555df828324c47d3c782f3f17b24cc7452..bad770db49f663a8774b9599bcef67006d60bd4c 100644 (file)
@@ -2,6 +2,7 @@
 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;