Commit e99954e4 authored by xuchengxuan's avatar xuchengxuan Committed by antirez
Browse files

Fixed comments of slowlog duration

parent d048f972
...@@ -35,7 +35,7 @@ typedef struct slowlogEntry { ...@@ -35,7 +35,7 @@ typedef struct slowlogEntry {
robj **argv; robj **argv;
int argc; int argc;
long long id; /* Unique entry identifier. */ long long id; /* Unique entry identifier. */
long long duration; /* Time spent by the query, in nanoseconds. */ long long duration; /* Time spent by the query, in microseconds. */
time_t time; /* Unix time at which the query was executed. */ time_t time; /* Unix time at which the query was executed. */
sds cname; /* Client name. */ sds cname; /* Client name. */
sds peerid; /* Client network address. */ sds peerid; /* Client network address. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment