mirror of
https://github.com/fluencelabs/redis
synced 2025-06-28 00:11:33 +00:00
HLLMERGE implemented.
Merge N HLL data structures by selecting the max value for every M[i] register among the set of HLLs.
This commit is contained in:
@ -270,7 +270,8 @@ struct redisCommand redisCommandTable[] = {
|
||||
{"wait",waitCommand,3,"rs",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},
|
||||
{"hllcount",hllCountCommand,2,"r",0,NULL,1,1,1,0,0}
|
||||
{"hllcount",hllCountCommand,2,"w",0,NULL,1,1,1,0,0},
|
||||
{"hllmerge",hllMergeCommand,-2,"wm",0,NULL,1,-1,1,0,0}
|
||||
};
|
||||
|
||||
struct evictionPoolEntry *evictionPoolAlloc(void);
|
||||
|
Reference in New Issue
Block a user