RedisBloom 2.2 Release Notes
RedisBloom 2.2.4 (July 2020)
Headlines:
- This release improves overall stability and provides fixes for founded issues.
Details:
- Bugfix:
RedisBloom 2.2.2 (March 2020)
Headlines:
- This release improves overall stability and provides fixes for issues found after the previous release.
Details:
- Minor enhancements:
- Bloom
- #180 Removed the upper limit on Bloom Filter capacity.
- Bloom
RedisBloom 2.2.1 (January 2020)
Headlines:
- This release improves overall stability and provides fixes for issues found after the previous release.
Details:
- Minor Enhancements:
RedisBloom 2.2.0 (December 2019)
-
Added functionality
- Bloom
- #149
BF.INFO
returns details about a specific bloom filter - Scalable
- #153 Ability to change the
EXPANSION
rate. This means each subsequent sub-filter will beexpansion
times larger as the previous one. - #160 Optimise the scaling up of filter according to the Scalable Bloom Filter paper
- #161 Optional
NONSCALING
argument to disable scaling. (This saves space since less hash functions are used)
- #153 Ability to change the
- #155 Disabling rounding up functionality
- #149
- Cuckoo
- #149
CF.INFO
returns details about a specific cuckoo filter - Scalable
- #138 Configurable
EXPANSION
. When an additional filter is created, its size will be the size of the current filter multiplied by theexpansion
. Higher expansion rates will result in lower error rates. - #142 The maximum number of expansions limited to 32.
- #131 Configurable
MAXITERATIONS
. Number of attempts to swap buckets before declaring filter as full and creating an additional filter.
- #138 Configurable
- #135 Configurable
BUCKETSIZE
. Number of items in each bucket. Higher bucket size value improves the fill rate but result in a higher error rate and slightly slower operation speed. - #142 use of 64bit hash function
- #136 expose compaction of filters in the API
- #149
- CMS
- #97
CMS.INCRBY
returns count instead of ‘OK’
- #97
- Bloom
-
Minor Bugfixes