diff options
author | antirez <antirez@gmail.com> | 2014-07-01 16:04:59 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-07-01 16:07:13 +0200 |
commit | 551bee86b42e7c41c9cd550795685eb20b207b88 (patch) | |
tree | 1eafccb38061e9a5fcf5a4384b33290315d8dc61 /src/redis.c | |
parent | 8612e6de888fe30bd8cfcd0f4ad1979a92434a2f (diff) | |
download | redis-551bee86b42e7c41c9cd550795685eb20b207b88.tar.gz |
LATENCY SAMPLES implemented.
Diffstat (limited to 'src/redis.c')
-rw-r--r-- | src/redis.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/redis.c b/src/redis.c index 26e2295cb..a520bd75b 100644 --- a/src/redis.c +++ b/src/redis.c @@ -282,7 +282,8 @@ struct redisCommand redisCommandTable[] = { {"pfadd",pfaddCommand,-2,"wmF",0,NULL,1,1,1,0,0}, {"pfcount",pfcountCommand,-2,"w",0,NULL,1,1,1,0,0}, {"pfmerge",pfmergeCommand,-2,"wm",0,NULL,1,-1,1,0,0}, - {"pfdebug",pfdebugCommand,-3,"w",0,NULL,0,0,0,0,0} + {"pfdebug",pfdebugCommand,-3,"w",0,NULL,0,0,0,0,0}, + {"latency",latencyCommand,-2,"arslt",0,NULL,0,0,0,0,0} }; struct evictionPoolEntry *evictionPoolAlloc(void); |