aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/pfmerge.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/pfmerge.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/pfmerge.json')
-rw-r--r--examples/redis-unstable/src/commands/pfmerge.json73
1 files changed, 0 insertions, 73 deletions
diff --git a/examples/redis-unstable/src/commands/pfmerge.json b/examples/redis-unstable/src/commands/pfmerge.json
deleted file mode 100644
index c93070f..0000000
--- a/examples/redis-unstable/src/commands/pfmerge.json
+++ /dev/null
@@ -1,73 +0,0 @@
1{
2 "PFMERGE": {
3 "summary": "Merges one or more HyperLogLog values into a single key.",
4 "complexity": "O(N) to merge N HyperLogLogs, but with high constant times.",
5 "group": "hyperloglog",
6 "since": "2.8.9",
7 "arity": -2,
8 "function": "pfmergeCommand",
9 "command_flags": [
10 "WRITE",
11 "DENYOOM"
12 ],
13 "acl_categories": [
14 "HYPERLOGLOG"
15 ],
16 "key_specs": [
17 {
18 "flags": [
19 "RW",
20 "ACCESS",
21 "INSERT"
22 ],
23 "begin_search": {
24 "index": {
25 "pos": 1
26 }
27 },
28 "find_keys": {
29 "range": {
30 "lastkey": 0,
31 "step": 1,
32 "limit": 0
33 }
34 }
35 },
36 {
37 "flags": [
38 "RO",
39 "ACCESS"
40 ],
41 "begin_search": {
42 "index": {
43 "pos": 2
44 }
45 },
46 "find_keys": {
47 "range": {
48 "lastkey": -1,
49 "step": 1,
50 "limit": 0
51 }
52 }
53 }
54 ],
55 "arguments": [
56 {
57 "name": "destkey",
58 "type": "key",
59 "key_spec_index": 0
60 },
61 {
62 "name": "sourcekey",
63 "type": "key",
64 "key_spec_index": 1,
65 "optional": true,
66 "multiple": true
67 }
68 ],
69 "reply_schema": {
70 "const": "OK"
71 }
72 }
73}