File: HYPERLOGLOG.md

package info (click to toggle)
python-fakeredis 2.29.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,772 kB
  • sloc: python: 19,002; sh: 8; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Redis `hyperloglog` commands (3/3 implemented)

## [PFADD](https://redis.io/commands/pfadd/)

Adds elements to a HyperLogLog key. Creates the key if it doesn't exist.

## [PFCOUNT](https://redis.io/commands/pfcount/)

Returns the approximated cardinality of the set(s) observed by the HyperLogLog key(s).

## [PFMERGE](https://redis.io/commands/pfmerge/)

Merges one or more HyperLogLog values into a single key.