diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-03-06 13:49:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 13:49:13 +0200 |
commit | 98fd06eb8df1ecc109b4a5fb2d2a2e810142283e (patch) | |
tree | 0aec0ea9d1b87637381fbd06f7e93848ddc43433 /redis/commands/cluster.py | |
parent | c5d19b8571d2b15a29637f56a51b0da560072945 (diff) | |
download | redis-py-98fd06eb8df1ecc109b4a5fb2d2a2e810142283e.tar.gz |
Add support for JSON, TIMESERIES, BLOOM & GRAPH commands in cluster (#2032)
Co-authored-by: Chayim <chayim@users.noreply.github.com>
Diffstat (limited to 'redis/commands/cluster.py')
-rw-r--r-- | redis/commands/cluster.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/redis/commands/cluster.py b/redis/commands/cluster.py index 8bdcbba..7342c0c 100644 --- a/redis/commands/cluster.py +++ b/redis/commands/cluster.py @@ -9,6 +9,7 @@ from .core import ( ScriptCommands, ) from .helpers import list_or_args +from .redismodules import RedisModuleCommands class ClusterMultiKeyCommands: @@ -212,6 +213,7 @@ class RedisClusterCommands( PubSubCommands, ClusterDataAccessCommands, ScriptCommands, + RedisModuleCommands, ): """ A class for all Redis Cluster commands |