diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 22:52:54 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 22:52:54 +0100 |
| commit | dcacc00e3750300617ba6e16eb346713f91a783a (patch) | |
| tree | 38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/src/commands/slowlog-get.json | |
| parent | 58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff) | |
| download | crep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz | |
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/slowlog-get.json')
| -rw-r--r-- | examples/redis-unstable/src/commands/slowlog-get.json | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/examples/redis-unstable/src/commands/slowlog-get.json b/examples/redis-unstable/src/commands/slowlog-get.json deleted file mode 100644 index ffc54b5..0000000 --- a/examples/redis-unstable/src/commands/slowlog-get.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "GET": { - "summary": "Returns the slow log's entries.", - "complexity": "O(N) where N is the number of entries returned", - "group": "server", - "since": "2.2.12", - "arity": -2, - "container": "SLOWLOG", - "function": "slowlogCommand", - "history": [ - [ - "4.0.0", - "Added client IP address, port and name to the reply." - ] - ], - "command_flags": [ - "ADMIN", - "LOADING", - "STALE" - ], - "command_tips": [ - "REQUEST_POLICY:ALL_NODES", - "NONDETERMINISTIC_OUTPUT" - ], - "reply_schema": { - "type": "array", - "description": "Entries from the slow log in chronological order.", - "uniqueItems": true, - "items": { - "type": "array", - "minItems": 6, - "maxItems": 6, - "items": [ - { - "type": "integer", - "description": "Slow log entry ID." - }, - { - "type": "integer", - "description": "The unix timestamp at which the logged command was processed.", - "minimum": 0 - }, - { - "type": "integer", - "description": "The amount of time needed for its execution, in microseconds.", - "minimum": 0 - }, - { - "type": "array", - "description": "The arguments of the command.", - "items": { - "type": "string" - } - }, - { - "type": "string", - "description": "Client IP address and port." - }, - { - "type": "string", - "description": "Client name if set via the CLIENT SETNAME command." - } - ] - } - }, - "arguments": [ - { - "name": "count", - "type": "integer", - "optional": true - } - ] - } -} |
