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/getrange.json | |
| parent | 58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff) | |
| download | crep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz | |
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/getrange.json')
| -rw-r--r-- | examples/redis-unstable/src/commands/getrange.json | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/redis-unstable/src/commands/getrange.json b/examples/redis-unstable/src/commands/getrange.json deleted file mode 100644 index 82bb723..0000000 --- a/examples/redis-unstable/src/commands/getrange.json +++ /dev/null | |||
| @@ -1,55 +0,0 @@ | |||
| 1 | { | ||
| 2 | "GETRANGE": { | ||
| 3 | "summary": "Returns a substring of the string stored at a key.", | ||
| 4 | "complexity": "O(N) where N is the length of the returned string. The complexity is ultimately determined by the returned length, but because creating a substring from an existing string is very cheap, it can be considered O(1) for small strings.", | ||
| 5 | "group": "string", | ||
| 6 | "since": "2.4.0", | ||
| 7 | "arity": 4, | ||
| 8 | "function": "getrangeCommand", | ||
| 9 | "command_flags": [ | ||
| 10 | "READONLY" | ||
| 11 | ], | ||
| 12 | "acl_categories": [ | ||
| 13 | "STRING" | ||
| 14 | ], | ||
| 15 | "key_specs": [ | ||
| 16 | { | ||
| 17 | "flags": [ | ||
| 18 | "RO", | ||
| 19 | "ACCESS" | ||
| 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 | "reply_schema": { | ||
| 36 | "type": "string", | ||
| 37 | "description": "The substring of the string value stored at key, determined by the offsets start and end (both are inclusive)." | ||
| 38 | }, | ||
| 39 | "arguments": [ | ||
| 40 | { | ||
| 41 | "name": "key", | ||
| 42 | "type": "key", | ||
| 43 | "key_spec_index": 0 | ||
| 44 | }, | ||
| 45 | { | ||
| 46 | "name": "start", | ||
| 47 | "type": "integer" | ||
| 48 | }, | ||
| 49 | { | ||
| 50 | "name": "end", | ||
| 51 | "type": "integer" | ||
| 52 | } | ||
| 53 | ] | ||
| 54 | } | ||
| 55 | } | ||
