summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/zinterstore.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/zinterstore.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/zinterstore.json')
-rw-r--r--examples/redis-unstable/src/commands/zinterstore.json108
1 files changed, 0 insertions, 108 deletions
diff --git a/examples/redis-unstable/src/commands/zinterstore.json b/examples/redis-unstable/src/commands/zinterstore.json
deleted file mode 100644
index 5bd940c..0000000
--- a/examples/redis-unstable/src/commands/zinterstore.json
+++ /dev/null
@@ -1,108 +0,0 @@
-{
- "ZINTERSTORE": {
- "summary": "Stores the intersect of multiple sorted sets in a key.",
- "complexity": "O(N*K)+O(M*log(M)) worst case with N being the smallest input sorted set, K being the number of input sorted sets and M being the number of elements in the resulting sorted set.",
- "group": "sorted_set",
- "since": "2.0.0",
- "arity": -4,
- "function": "zinterstoreCommand",
- "get_keys_function": "zunionInterDiffStoreGetKeys",
- "command_flags": [
- "WRITE",
- "DENYOOM"
- ],
- "acl_categories": [
- "SORTEDSET"
- ],
- "key_specs": [
- {
- "flags": [
- "OW",
- "UPDATE"
- ],
- "begin_search": {
- "index": {
- "pos": 1
- }
- },
- "find_keys": {
- "range": {
- "lastkey": 0,
- "step": 1,
- "limit": 0
- }
- }
- },
- {
- "flags": [
- "RO",
- "ACCESS"
- ],
- "begin_search": {
- "index": {
- "pos": 2
- }
- },
- "find_keys": {
- "keynum": {
- "keynumidx": 0,
- "firstkey": 1,
- "step": 1
- }
- }
- }
- ],
- "reply_schema": {
- "description": "Number of elements in the resulting sorted set.",
- "type": "integer",
- "minimum": 0
- },
- "arguments": [
- {
- "name": "destination",
- "type": "key",
- "key_spec_index": 0
- },
- {
- "name": "numkeys",
- "type": "integer"
- },
- {
- "name": "key",
- "type": "key",
- "key_spec_index": 1,
- "multiple": true
- },
- {
- "token": "WEIGHTS",
- "name": "weight",
- "type": "integer",
- "optional": true,
- "multiple": true
- },
- {
- "token": "AGGREGATE",
- "name": "aggregate",
- "type": "oneof",
- "optional": true,
- "arguments": [
- {
- "name": "sum",
- "type": "pure-token",
- "token": "SUM"
- },
- {
- "name": "min",
- "type": "pure-token",
- "token": "MIN"
- },
- {
- "name": "max",
- "type": "pure-token",
- "token": "MAX"
- }
- ]
- }
- ]
- }
-}