mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 13:31:32 +00:00
HyperLogLog API prefix modified from "P" to "PF".
Using both the initials of Philippe Flajolet instead of just "P".
This commit is contained in:
@ -259,10 +259,10 @@ 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},
|
||||
{"pselftest",pselftestCommand,1,"r",0,NULL,0,0,0,0,0},
|
||||
{"padd",paddCommand,-2,"wm",0,NULL,1,1,1,0,0},
|
||||
{"pcount",pcountCommand,2,"w",0,NULL,1,1,1,0,0},
|
||||
{"pmerge",pmergeCommand,-2,"wm",0,NULL,1,-1,1,0,0}
|
||||
{"pfselftest",pfselftestCommand,1,"r",0,NULL,0,0,0,0,0},
|
||||
{"pfadd",pfaddCommand,-2,"wm",0,NULL,1,1,1,0,0},
|
||||
{"pfcount",pfcountCommand,2,"w",0,NULL,1,1,1,0,0},
|
||||
{"pfmerge",pfmergeCommand,-2,"wm",0,NULL,1,-1,1,0,0}
|
||||
};
|
||||
|
||||
/*============================ Utility functions ============================ */
|
||||
|
Reference in New Issue
Block a user