Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.09 KB

json.nummultby.md

File metadata and controls

47 lines (30 loc) · 1.09 KB

Multiply the number value stored at path by number

Examples

Required arguments

key

is key to modify.

value

is number value to multiply.

Optional arguments

path

is JSONPath to specify. Default is root $.

Return

JSON.NUMMULTBY returns a bulk string reply specified as a stringified new values for each path, or nil element if the matching JSON value is not a number. For more information about replies, see Redis serialization protocol specification.

Examples

{{< highlight bash >}} 127.0.0.1:6379> JSON.SET doc . '{"a":"b","b":[{"a":2}, {"a":5}, {"a":"c"}]}' OK 127.0.0.1:6379> JSON.NUMMULTBY doc $.a 2 "[null]" 127.0.0.1:6379&gt; JSON.NUMMULTBY doc $..a 2 "[null,4,10,null]" {{< / highlight >}}

See also

JSON.NUMINCRBY | JSON.ARRINSERT

Related topics