summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvitalFineRedis <avital.fine@redislabs.com>2021-10-14 09:03:02 +0200
committerAvitalFineRedis <avital.fine@redislabs.com>2021-10-14 09:03:02 +0200
commit9c34614c1a998267b2ea454544a0fff243c0b943 (patch)
tree5ec800ec4098a06b38b45cfe6e28de2332798559
parent4eeceb0b7ebdf8fb164d1c68cd9c64d320bf9241 (diff)
downloadredis-py-9c34614c1a998267b2ea454544a0fff243c0b943.tar.gz
Throw NotImplementedError
-rw-r--r--redis/commands.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/redis/commands.py b/redis/commands.py
index 4a8d430..bcb1c84 100644
--- a/redis/commands.py
+++ b/redis/commands.py
@@ -584,6 +584,11 @@ class Commands:
"MEMORY DOCTOR is intentionally not implemented in the client."
)
+ def memory_HELP(self):
+ raise NotImplementedError(
+ "MEMORY HELP is intentionally not implemented in the client."
+ )
+
def memory_stats(self):
"""Return a dictionary of memory stats"""
return self.execute_command('MEMORY STATS')