INCRBYFLOAT implementation

This commit is contained in:
antirez
2011-11-12 19:27:35 +01:00
parent 64c7499eb8
commit 5574b53eae
4 changed files with 88 additions and 2 deletions

View File

@ -165,6 +165,7 @@ struct redisCommand redisCommandTable[] = {
{"hexists",hexistsCommand,3,"r",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},
{"getset",getsetCommand,3,"wm",0,NULL,1,1,1,0,0},
{"mset",msetCommand,-3,"wm",0,NULL,1,-1,2,0,0},
{"msetnx",msetnxCommand,-3,"wm",0,NULL,1,-1,2,0,0},