aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/fcall.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/fcall.json')
-rw-r--r--examples/redis-unstable/src/commands/fcall.json69
1 files changed, 0 insertions, 69 deletions
diff --git a/examples/redis-unstable/src/commands/fcall.json b/examples/redis-unstable/src/commands/fcall.json
deleted file mode 100644
index 7d6be69..0000000
--- a/examples/redis-unstable/src/commands/fcall.json
+++ /dev/null
@@ -1,69 +0,0 @@
1{
2 "FCALL": {
3 "summary": "Invokes a function.",
4 "complexity": "Depends on the function that is executed.",
5 "group": "scripting",
6 "since": "7.0.0",
7 "arity": -3,
8 "function": "fcallCommand",
9 "get_keys_function": "functionGetKeys",
10 "command_flags": [
11 "NOSCRIPT",
12 "SKIP_MONITOR",
13 "MAY_REPLICATE",
14 "NO_MANDATORY_KEYS",
15 "STALE"
16 ],
17 "acl_categories": [
18 "SCRIPTING"
19 ],
20 "key_specs": [
21 {
22 "notes": "We cannot tell how the keys will be used so we assume the worst, RW and UPDATE",
23 "flags": [
24 "RW",
25 "ACCESS",
26 "UPDATE"
27 ],
28 "begin_search": {
29 "index": {
30 "pos": 2
31 }
32 },
33 "find_keys": {
34 "keynum": {
35 "keynumidx": 0,
36 "firstkey": 1,
37 "step": 1
38 }
39 }
40 }
41 ],
42 "arguments": [
43 {
44 "name": "function",
45 "type": "string"
46 },
47 {
48 "name": "numkeys",
49 "type": "integer"
50 },
51 {
52 "name": "key",
53 "type": "key",
54 "key_spec_index": 0,
55 "optional": true,
56 "multiple": true
57 },
58 {
59 "name": "arg",
60 "type": "string",
61 "optional": true,
62 "multiple": true
63 }
64 ],
65 "reply_schema": {
66 "description": "Return value depends on the function that is executed"
67 }
68 }
69}