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/xlen.json | |
| parent | 58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff) | |
| download | crep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz | |
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/xlen.json')
| -rw-r--r-- | examples/redis-unstable/src/commands/xlen.json | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/examples/redis-unstable/src/commands/xlen.json b/examples/redis-unstable/src/commands/xlen.json deleted file mode 100644 index 16ce72c..0000000 --- a/examples/redis-unstable/src/commands/xlen.json +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | { | ||
| 2 | "XLEN": { | ||
| 3 | "summary": "Return the number of messages in a stream.", | ||
| 4 | "complexity": "O(1)", | ||
| 5 | "group": "stream", | ||
| 6 | "since": "5.0.0", | ||
| 7 | "arity": 2, | ||
| 8 | "function": "xlenCommand", | ||
| 9 | "command_flags": [ | ||
| 10 | "READONLY", | ||
| 11 | "FAST" | ||
| 12 | ], | ||
| 13 | "acl_categories": [ | ||
| 14 | "STREAM" | ||
| 15 | ], | ||
| 16 | "key_specs": [ | ||
| 17 | { | ||
| 18 | "flags": [ | ||
| 19 | "RO" | ||
| 20 | ], | ||
| 21 | "begin_search": { | ||
| 22 | "index": { | ||
| 23 | "pos": 1 | ||
| 24 | } | ||
| 25 | }, | ||
| 26 | "find_keys": { | ||
| 27 | "range": { | ||
| 28 | "lastkey": 0, | ||
| 29 | "step": 1, | ||
| 30 | "limit": 0 | ||
| 31 | } | ||
| 32 | } | ||
| 33 | } | ||
| 34 | ], | ||
| 35 | "arguments": [ | ||
| 36 | { | ||
| 37 | "name": "key", | ||
| 38 | "type": "key", | ||
| 39 | "key_spec_index": 0 | ||
| 40 | } | ||
| 41 | ], | ||
| 42 | "reply_schema": { | ||
| 43 | "description": "The number of entries of the stream at key", | ||
| 44 | "type": "integer", | ||
| 45 | "minimum": 0 | ||
| 46 | } | ||
| 47 | } | ||
| 48 | } | ||
