aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/eval_ro.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/eval_ro.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/eval_ro.json')
-rw-r--r--examples/redis-unstable/src/commands/eval_ro.json68
1 files changed, 0 insertions, 68 deletions
diff --git a/examples/redis-unstable/src/commands/eval_ro.json b/examples/redis-unstable/src/commands/eval_ro.json
deleted file mode 100644
index 1440998..0000000
--- a/examples/redis-unstable/src/commands/eval_ro.json
+++ /dev/null
@@ -1,68 +0,0 @@
1{
2 "EVAL_RO": {
3 "summary": "Executes a read-only server-side Lua script.",
4 "complexity": "Depends on the script that is executed.",
5 "group": "scripting",
6 "since": "7.0.0",
7 "arity": -3,
8 "function": "evalRoCommand",
9 "get_keys_function": "evalGetKeys",
10 "command_flags": [
11 "NOSCRIPT",
12 "SKIP_MONITOR",
13 "NO_MANDATORY_KEYS",
14 "STALE",
15 "READONLY"
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, RO and ACCESS",
23 "flags": [
24 "RO",
25 "ACCESS"
26 ],
27 "begin_search": {
28 "index": {
29 "pos": 2
30 }
31 },
32 "find_keys": {
33 "keynum": {
34 "keynumidx": 0,
35 "firstkey": 1,
36 "step": 1
37 }
38 }
39 }
40 ],
41 "arguments": [
42 {
43 "name": "script",
44 "type": "string"
45 },
46 {
47 "name": "numkeys",
48 "type": "integer"
49 },
50 {
51 "name": "key",
52 "type": "key",
53 "key_spec_index": 0,
54 "optional":true,
55 "multiple": true
56 },
57 {
58 "name": "arg",
59 "type": "string",
60 "optional":true,
61 "multiple": true
62 }
63 ],
64 "reply_schema": {
65 "description": "Return value depends on the script that is executed"
66 }
67 }
68}