]>
git.saurik.com Git - redis.git/blob - src/slowlog.h
45a500555df828324c47d3c782f3f17b24cc7452
1 /* This structure defines an entry inside the slow log list */
2 typedef struct slowlogEntry
{
5 long long duration
; /* Time spent by the query, in nanoseconds. */
6 time_t time
; /* Unix time at which the query was executed. */
10 void slowlogInit(void);
11 void slowlogPushEntryIfNeeded(robj
**argv
, int argc
, long long duration
);
13 /* Exported commands */
14 void slowlogCommand(redisClient
*c
);