aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/time.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/time.json')
-rw-r--r--examples/redis-unstable/src/commands/time.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/redis-unstable/src/commands/time.json b/examples/redis-unstable/src/commands/time.json
deleted file mode 100644
index 3161d3f..0000000
--- a/examples/redis-unstable/src/commands/time.json
+++ /dev/null
@@ -1,28 +0,0 @@
1{
2 "TIME": {
3 "summary": "Returns the server time.",
4 "complexity": "O(1)",
5 "group": "server",
6 "since": "2.6.0",
7 "arity": 1,
8 "function": "timeCommand",
9 "command_flags": [
10 "LOADING",
11 "STALE",
12 "FAST"
13 ],
14 "command_tips": [
15 "NONDETERMINISTIC_OUTPUT"
16 ],
17 "reply_schema": {
18 "type": "array",
19 "description": "Array containing two elements: Unix time in seconds and microseconds.",
20 "minItems": 2,
21 "maxItems": 2,
22 "items": {
23 "type": "string",
24 "pattern": "[0-9]+"
25 }
26 }
27 }
28}