RedisJSON
RedisJSON copied to clipboard
Support filter expressions with `JSON.ARRPOP <key> [path [index | filter]]`
Feature Request
Please consider support the following command
JSON.ARRPOP <key> [path [index | filter]]
to delete array items based on advanced filter expressions like $.books[?(@.price < 10)]
Example of usage
JSON.ARRPOP store $.books '?(@.price < 10)'
This command should support poping multiple items, or consider adding new command like ARRPOPALL