Commands
- Introduction
- Strings
- Lists
- Sets
- Sorted Sets (ZSets)
- SORTED SETS Introduction
- ZADD
- ZINCRBY
- ZRANGE
- ZRANGESTORE 6.2
- ZLS Ent
- ZREVRANGE
- ZRANGEBYSCORE
- ZREVRANGEBYSCORE
- ZRANGEBYLEX
- ZREVRANGEBYLEX
- ZCARD
- ZLEN Ent
- ZCOUNT
- ZLEXCOUNT
- ZRANK
- ZREVRANK
- ZSCORE
- ZMSCORE 6.2
- ZREM
- ZRM Ent
- ZREMRANGEBYRANK
- ZREMRANGEBYSCORE
- ZREMRANGEBYLEX
- ZUNION 6.2
- ZINTER 6.2
- ZDIFF 6.2
- ZUNIONSTORE
- ZINTERSTORE
- ZDIFFSTORE 6.2
- ZSCAN
- ZPOPMIN 5.0
- ZPOPMAX 5.0
- BZPOPMIN 5.0
- BZPOPMAX 5.0
- ZISMEMBER Ent
- ZRANDMEMBER 6.2
- Hashes
- Streams
- Common Keys
- Recyclebin New
- Bits
- Pub/Sub
- Lua Script
- HyperLogLog(PF)
- Geo
- Connection
- Redis on Windows
redis commands hyperloglog pfcount
PFCOUNT
Redis Developer Course | Redis Technical Support | Redis Enterprise Server |
---|
원소(element)의 개수를 조회
사용법은 pfcount key 입니다.
추정 오류는 1% 이하입니다.
Example
명령> | PFADD hllkey ele1 ele2 ele3 |
결과> | (integer) 1 |
명령> | PFADD hllkey ele4 ele5 ele6 |
결과> | (integer) 1 |
명령> | PFCOUNT hllkey |
결과> | (integer) 6 |
명령문
PFCOUNT key [key ...]
- 이 명령은 version 2.8.9 부터 사용할 수 있다.
- 논리적 처리 소요시간은 O(1)이다.
<< PFADD | PFCOUNT | PFMERGE >> |
---|
Email
답글이 올라오면 이메일로 알려드리겠습니다.