Arguments
string
required
The key of the json entry.
string
required
The path of the array.
$ is the root....TValue[]
required
One or more values to append to the array.
Response
The length of the array after the appending.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
await redis.json.arrappend("key", "$.path.to.array", "a");
Append values to the array at path in the JSON document at key.
$ is the root.await redis.json.arrappend("key", "$.path.to.array", "a");
Was this page helpful?