美文网首页redis学习Redis Redis
第七章:Redis 位图bitmap&基数统计Hyper

第七章:Redis 位图bitmap&基数统计Hyper

作者: FantJ | 来源:发表于2018-01-25 13:29 被阅读21次

    1. 什么是位图

    redis可以直接对数据进行位操作。


    获取hello二进制的第0位.png

    2. 实例

    1. setbit key offset value #给位图指定索引设置值
      上面我们给hello赋值为world,那么我们现在把它的二进制第0位改成1,再进行get hello


      setbit .png
    2. getbit key offset #获取第offset位的二进制
    3. bitcount key [start end] #获取位图指定范围中(start 到end)1的个数
    4. bitop op destkey key [key...] #做多个Bitmap的and(交集)、or(并集)、not(非)、xor(异或)操作并将结果保存在destkey中
    5. bitpos key targetBit [start] [end] #计算位图指定范围(start)到(end)的位置

    1. 什么是Hyperloglog

    极小空间完成独立数量统计。本质是个string。千万级别的存储只会消耗极少的内存(几Mb),但是错误率比较高(0.81%)

    2. 三个命令

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

    3. 实例

    image.png

    相关文章

      网友评论

        本文标题:第七章:Redis 位图bitmap&基数统计Hyper

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