diff options
Diffstat (limited to 'redis/commands')
-rw-r--r-- | redis/commands/cluster.py | 2 | ||||
-rw-r--r-- | redis/commands/core.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/redis/commands/cluster.py b/redis/commands/cluster.py index f434f36..a23a94a 100644 --- a/redis/commands/cluster.py +++ b/redis/commands/cluster.py @@ -52,6 +52,8 @@ READ_COMMANDS = frozenset( [ "BITCOUNT", "BITPOS", + "EVAL_RO", + "EVALSHA_RO", "EXISTS", "GEODIST", "GEOHASH", diff --git a/redis/commands/core.py b/redis/commands/core.py index 4cd0a9f..10eb048 100644 --- a/redis/commands/core.py +++ b/redis/commands/core.py @@ -5139,7 +5139,7 @@ class ScriptCommands(CommandsProtocol): """ The read-only variant of the EVAL command - Execute the read-only Lue ``script`` specifying the ``numkeys`` the script + Execute the read-only Lua ``script`` specifying the ``numkeys`` the script will touch and the key names and argument values in ``keys_and_args``. Returns the result of the script. |