From 12c17bfc436ea6784bbc8b2d327d981520858eb7 Mon Sep 17 00:00:00 2001 From: Chayim Date: Thu, 9 Dec 2021 09:49:35 +0200 Subject: Adding cluster, bloom, and graph docs (#1779) --- redis/commands/bf/commands.py | 6 +++++- redis/commands/graph/commands.py | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'redis') 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. -- cgit v1.2.1