HSCAN implemented.

This commit is contained in:
antirez
2013-10-28 11:32:34 +01:00
parent 24ecabc995
commit 1cc7e646af
4 changed files with 11 additions and 1 deletions

View File

@ -192,6 +192,7 @@ struct redisCommand redisCommandTable[] = {
{"hvals",hvalsCommand,2,"rS",0,NULL,1,1,1,0,0},
{"hgetall",hgetallCommand,2,"r",0,NULL,1,1,1,0,0},
{"hexists",hexistsCommand,3,"r",0,NULL,1,1,1,0,0},
{"hscan",hscanCommand,-3,"rR",0,NULL,1,1,1,0,0},
{"incrby",incrbyCommand,3,"wm",0,NULL,1,1,1,0,0},
{"decrby",decrbyCommand,3,"wm",0,NULL,1,1,1,0,0},
{"incrbyfloat",incrbyfloatCommand,3,"wm",0,NULL,1,1,1,0,0},