diff options
Diffstat (limited to 'redis/commands/json/commands.py')
-rw-r--r-- | redis/commands/json/commands.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/redis/commands/json/commands.py b/redis/commands/json/commands.py index 42e3ef2..3b2f2a5 100644 --- a/redis/commands/json/commands.py +++ b/redis/commands/json/commands.py @@ -255,7 +255,9 @@ class JSONCommands: def mset(self, name: str, path: str, obj: JsonType, *items) -> Optional[str]: """ - Set the JSON value at key ``name`` under the ``path`` to ``obj`` for one or more keys. + Set the JSON value at key ``name`` under the ``path`` to ``obj`` + for one or more keys. + ``items`` accepts a list of additional key/path/value to set. For the purpose of using this within a pipeline, this command is also @@ -271,7 +273,6 @@ class JSONCommands: return self.execute_command("JSON.MSET", *pieces) - def merge( self, name: str, |