summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/client-no-touch.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/client-no-touch.json')
-rw-r--r--examples/redis-unstable/src/commands/client-no-touch.json40
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/redis-unstable/src/commands/client-no-touch.json b/examples/redis-unstable/src/commands/client-no-touch.json
deleted file mode 100644
index 4cf7b72..0000000
--- a/examples/redis-unstable/src/commands/client-no-touch.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "NO-TOUCH": {
- "summary": "Controls whether commands sent by the client affect the LRU/LFU of accessed keys.",
- "complexity": "O(1)",
- "group": "connection",
- "since": "7.2.0",
- "arity": 3,
- "container": "CLIENT",
- "function": "clientCommand",
- "command_flags": [
- "NOSCRIPT",
- "LOADING",
- "STALE"
- ],
- "acl_categories": [
- "CONNECTION"
- ],
- "reply_schema": {
- "const": "OK"
- },
- "arguments": [
- {
- "name": "enabled",
- "type": "oneof",
- "arguments": [
- {
- "name": "on",
- "type": "pure-token",
- "token": "ON"
- },
- {
- "name": "off",
- "type": "pure-token",
- "token": "OFF"
- }
- ]
- }
- ]
- }
-}