LATENCY SAMPLES implemented.

This commit is contained in:
antirez
2014-07-01 16:04:59 +02:00
parent 72c84acc99
commit a57eb3272d
3 changed files with 48 additions and 2 deletions

View File

@ -273,7 +273,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}
};
/*============================ Utility functions ============================ */