diff options
author | Chayim <chayim@users.noreply.github.com> | 2021-12-09 09:49:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 09:49:35 +0200 |
commit | 12c17bfc436ea6784bbc8b2d327d981520858eb7 (patch) | |
tree | 40cb053e6a10bffe70f528132265225c969b4467 /redis | |
parent | a58f4235e554cb50b312caf1a9076114c77d0529 (diff) | |
download | redis-py-12c17bfc436ea6784bbc8b2d327d981520858eb7.tar.gz |
Adding cluster, bloom, and graph docs (#1779)v4.1.0rc2
Diffstat (limited to 'redis')
-rw-r--r-- | redis/commands/bf/commands.py | 6 | ||||
-rw-r--r-- | redis/commands/graph/commands.py | 2 |
2 files changed, 7 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): diff --git a/redis/commands/graph/commands.py b/redis/commands/graph/commands.py index f0c1d68..e097936 100644 --- a/redis/commands/graph/commands.py +++ b/redis/commands/graph/commands.py @@ -6,6 +6,8 @@ from .query_result import QueryResult class GraphCommands: + """RedisGraph Commands""" + def commit(self): """ Create entire graph. |