欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

给hyperloglog添加pfexist

程序员文章站 2022-07-11 12:22:52
...

最近项目有一个需求就是查看hyperloglog中是否已经对某个元素计数了(不要求非常精确),于是分析了redis的hyperloglog代码后新加了一个新的指令pfexist

代码地址如下:

https://github.com/qzfzz/redis

https://github.com/qzfzz/phpredis

用法

127.0.0.1:6379>pfexist hll t1
127.0.0.1:6379>(integer)0
127.0.0.1:6379>pfadd hll t1
127.0.0.1:6379>(integer)1
127.0.0.1:6379>pfexist hll t1
127.0.0.1:6379>(integer)1

php代码中

$redis = new Redis();
$redis->connect( '127.0.0.1', 6379 );
$redis->pfexist( 'hll', [ 'keyname' ] );//第二个参数要用数组 且目前只支持一个参数 以后会优化这个参数