-
### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/kvrocks/issues) and found no similar issues.
### Motivation
Redis Stack already supports this probabilistic …
-
The [wiki page](https://en.wikipedia.org/wiki/Count%E2%80%93min_sketch) for CMS describes a variant with a different query function called count-mean-min-sketch; this tries to reduce bias in the estim…
-
We can reduce the size our the CMS to 1/4 if we use the logic behind https://github.com/seiflotfy/count-min-log
-
When adding two CountMinSketch objects, is it intentional that the heavy hitters are duplicated when they're summed using the monoid? The `heavyHitters` method on CMS is correct because it filters out…
-
The width of the sketch [according to the paper](http://www.cse.unsw.edu.au/~cs9314/07s1/lectures/Lin_CS9314_References/cm-latin.pdf) should be set to `ceil(e/epsilon)` where e is Euler's number. How…
-
It may be useful to keep track of probabilistic counters, especially if the cardinality of a key is high. For example, the remote ip address.
Consideration:
* Should this be a layer prior to redis…
-
https://github.com/redis/redis/releases/tag/8.0-m01
New commands:
>- 7 new data structures: JSON, Time series, Bloom filter, Cuckoo filter, Count-min sketch, Top-k, t-digest
>- Redis scalable que…
-
Feature suggestion
Spark [3.5.0](https://spark.apache.org/releases/spark-release-3-5-0.html) has been released. We should:
- [x] Update sbt to be this version the default version #435
- [x] Upda…
-
Hi,
I am using both v0.13.0 and v0.17.0 to align a same set of query and reference sequences with same paramers. The size of ref.fa is about 12G and query.fa is 46G.
```
wfmash -s 50k -l 150k -…
-
Wrap the low-level implementations (min count sketch, hash tables for key iteration...) in a Counter interface. The goal is to make Counter Bounter switch trivial for users.
Methods that cannot be…