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:
antirez
2014-03-31 14:39:44 +02:00
parent 7f18689a00
commit 691846e38d
3 changed files with 67 additions and 1 deletions

View File

@ -1451,6 +1451,7 @@ void waitCommand(redisClient *c);
void hllSelftestCommand(redisClient *c);
void hllAddCommand(redisClient *c);
void hllCountCommand(redisClient *c);
void hllMergeCommand(redisClient *c);
#if defined(__GNUC__)
void *calloc(size_t count, size_t size) __attribute__ ((deprecated));