summaryrefslogtreecommitdiff
path: root/redis/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands.py')
-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')