Commit 34710fe
authored
Add HyperLogLog benchmarks: PFCOUNT and PFMERGE (redis#313)
* Add memtier benchmark for HyperLogLog PFCOUNT with multiple keys
Pre-loads 3 HyperLogLog keys with 10K random elements each using PFADD (dense).
Benchmarks PFCOUNT performance counting the pre-loaded HLLs.
Useful for evaluating different HyperLogLog dense implementations (scalar, AVX, and NEON SIMD).
* Add memtier benchmark for HyperLogLog PFMERGE
Pre-loads 3 HyperLogLog keys with 10K random elements each using PFADD (dense).
Benchmarks PFMERGE performance.
Useful for evaluating different HyperLogLog dense implementations (scalar, AVX, and NEON SIMD).
* Reduce test time for memtier benchmark in HyperLogLog PFCOUNT and PFMERGE tests
The operations are stable, so long test durations are unnecessary1 parent 4ab54d6 commit 34710fe
File tree
2 files changed
+68
-0
lines changed- redis_benchmarks_specification/test-suites
2 files changed
+68
-0
lines changedLines changed: 34 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
Lines changed: 34 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
0 commit comments