美文网首页redis
redis hyperLogLog

redis hyperLogLog

作者: 文刀雨 | 来源:发表于2018-11-18 22:59 被阅读0次
  1. 基于HyperLogLog 算法:极小空间完成独立数量统计
  2. 本质还是字符串

API

  1. pfadd key element[element...]: 向hyperloglog添加元素
  2. pfcount key [key ...] 计算hyperloglog的独立总数
  3. pfmerge destkey sourcekey [sourcekey] 合并多个hyperloglog

使用经验

  1. 是否能容忍错误? 错误率:0.81%
  2. 是否需要单条数据?

相关文章

网友评论

    本文标题:redis hyperLogLog

    本文链接:https://www.haomeiwen.com/subject/qfunfqtx.html