diff options
Diffstat (limited to 'examples/redis-unstable/src/commands/slowlog-len.json')
| -rw-r--r-- | examples/redis-unstable/src/commands/slowlog-len.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/redis-unstable/src/commands/slowlog-len.json b/examples/redis-unstable/src/commands/slowlog-len.json new file mode 100644 index 0000000..717a8ad --- /dev/null +++ b/examples/redis-unstable/src/commands/slowlog-len.json | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | { | ||
| 2 | "LEN": { | ||
| 3 | "summary": "Returns the number of entries in the slow log.", | ||
| 4 | "complexity": "O(1)", | ||
| 5 | "group": "server", | ||
| 6 | "since": "2.2.12", | ||
| 7 | "arity": 2, | ||
| 8 | "container": "SLOWLOG", | ||
| 9 | "function": "slowlogCommand", | ||
| 10 | "command_flags": [ | ||
| 11 | "ADMIN", | ||
| 12 | "LOADING", | ||
| 13 | "STALE" | ||
| 14 | ], | ||
| 15 | "command_tips": [ | ||
| 16 | "REQUEST_POLICY:ALL_NODES", | ||
| 17 | "RESPONSE_POLICY:AGG_SUM", | ||
| 18 | "NONDETERMINISTIC_OUTPUT" | ||
| 19 | ], | ||
| 20 | "reply_schema": { | ||
| 21 | "type": "integer", | ||
| 22 | "description": "Number of entries in the slow log.", | ||
| 23 | "minimum": 0 | ||
| 24 | } | ||
| 25 | } | ||
| 26 | } | ||
