summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/hlen.json
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/src/commands/hlen.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/hlen.json')
-rw-r--r--examples/redis-unstable/src/commands/hlen.json47
1 files changed, 0 insertions, 47 deletions
diff --git a/examples/redis-unstable/src/commands/hlen.json b/examples/redis-unstable/src/commands/hlen.json
deleted file mode 100644
index d4c13ac..0000000
--- a/examples/redis-unstable/src/commands/hlen.json
+++ /dev/null
@@ -1,47 +0,0 @@
1{
2 "HLEN": {
3 "summary": "Returns the number of fields in a hash.",
4 "complexity": "O(1)",
5 "group": "hash",
6 "since": "2.0.0",
7 "arity": 2,
8 "function": "hlenCommand",
9 "command_flags": [
10 "READONLY",
11 "FAST"
12 ],
13 "acl_categories": [
14 "HASH"
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 "reply_schema": {
36 "type": "integer",
37 "description": "Number of the fields in the hash, or 0 when the key does not exist."
38 },
39 "arguments": [
40 {
41 "name": "key",
42 "type": "key",
43 "key_spec_index": 0
44 }
45 ]
46 }
47}