summaryrefslogtreecommitdiff
path: root/redis/commands/bf/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/bf/commands.py')
-rw-r--r--redis/commands/bf/commands.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/redis/commands/bf/commands.py b/redis/commands/bf/commands.py
index 3c8bf7f..7fc507d 100644
--- a/redis/commands/bf/commands.py
+++ b/redis/commands/bf/commands.py
@@ -51,7 +51,7 @@ TDIGEST_INFO = "TDIGEST.INFO"
class BFCommands:
- """RedisBloom commands."""
+ """Bloom Filter commands."""
# region Bloom Filter Functions
def create(self, key, errorRate, capacity, expansion=None, noScale=None):
@@ -166,6 +166,7 @@ class BFCommands:
class CFCommands:
+ """Cuckoo Filter commands."""
# region Cuckoo Filter Functions
def create(
@@ -283,6 +284,8 @@ class CFCommands:
class TOPKCommands:
+ """TOP-k Filter commands."""
+
def reserve(self, key, k, width, depth, decay):
"""
Create a new Top-K Filter `key` with desired probability of false
@@ -432,6 +435,7 @@ class TDigestCommands:
class CMSCommands:
+ """Count-Min Sketch Commands"""
# region Count-Min Sketch Functions
def initbydim(self, key, width, depth):