HLLADD implemented.

This commit is contained in:
antirez
2014-03-28 16:24:35 +01:00
parent ac29bb2ae4
commit 959d0f012a
3 changed files with 94 additions and 4 deletions

View File

@ -259,7 +259,8 @@ struct redisCommand redisCommandTable[] = {
{"bitop",bitopCommand,-4,"wm",0,NULL,2,-1,1,0,0},
{"bitcount",bitcountCommand,-2,"r",0,NULL,1,1,1,0,0},
{"bitpos",bitposCommand,-3,"r",0,NULL,1,1,1,0,0},
{"hllselftest",hllSelftestCommand,1,"r",0,NULL,0,0,0,0,0}
{"hllselftest",hllSelftestCommand,1,"r",0,NULL,0,0,0,0,0},
{"hlladd",hllAddCommand,-2,"wm",0,NULL,1,1,1,0,0}
};
/*============================ Utility functions ============================ */