@redis/bloom 1.2.0 → 2.0.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/commands/bloom/ADD.d.ts +11 -0
- package/dist/lib/commands/bloom/ADD.js +11 -0
- package/dist/lib/commands/bloom/CARD.d.ts +8 -0
- package/dist/lib/commands/bloom/CARD.js +10 -0
- package/dist/lib/commands/bloom/EXISTS.d.ts +11 -0
- package/dist/lib/commands/bloom/EXISTS.js +11 -0
- package/dist/lib/commands/bloom/INFO.d.ts +8 -0
- package/dist/lib/commands/bloom/INFO.js +11 -0
- package/dist/lib/commands/bloom/INSERT.d.ts +19 -0
- package/dist/lib/commands/bloom/INSERT.js +29 -0
- package/dist/lib/commands/bloom/LOADCHUNK.d.ts +8 -0
- package/dist/lib/commands/bloom/LOADCHUNK.js +10 -0
- package/dist/lib/commands/bloom/MADD.d.ts +12 -0
- package/dist/lib/commands/bloom/MADD.js +12 -0
- package/dist/lib/commands/bloom/MEXISTS.d.ts +12 -0
- package/dist/lib/commands/bloom/MEXISTS.js +12 -0
- package/dist/lib/commands/bloom/RESERVE.d.ts +12 -0
- package/dist/lib/commands/bloom/RESERVE.js +17 -0
- package/dist/lib/commands/bloom/SCANDUMP.d.ts +11 -0
- package/dist/lib/commands/bloom/SCANDUMP.js +15 -0
- package/dist/lib/commands/bloom/index.d.ts +159 -0
- package/dist/lib/commands/bloom/index.js +37 -0
- package/dist/lib/commands/count-min-sketch/INCRBY.d.ts +12 -0
- package/dist/lib/commands/count-min-sketch/INCRBY.js +22 -0
- package/dist/lib/commands/count-min-sketch/INFO.d.ts +29 -0
- package/dist/lib/commands/count-min-sketch/INFO.js +17 -0
- package/dist/lib/commands/count-min-sketch/INITBYDIM.d.ts +8 -0
- package/dist/lib/commands/count-min-sketch/INITBYDIM.js +10 -0
- package/dist/lib/commands/count-min-sketch/INITBYPROB.d.ts +8 -0
- package/dist/lib/commands/count-min-sketch/INITBYPROB.js +10 -0
- package/dist/lib/commands/count-min-sketch/MERGE.d.ts +13 -0
- package/dist/lib/commands/count-min-sketch/MERGE.js +25 -0
- package/dist/lib/commands/count-min-sketch/QUERY.d.ts +9 -0
- package/dist/lib/commands/count-min-sketch/QUERY.js +11 -0
- package/dist/lib/commands/count-min-sketch/index.d.ts +89 -0
- package/dist/lib/commands/count-min-sketch/index.js +25 -0
- package/dist/lib/commands/cuckoo/ADD.d.ts +11 -0
- package/dist/lib/commands/cuckoo/ADD.js +11 -0
- package/dist/lib/commands/cuckoo/ADDNX.d.ts +11 -0
- package/dist/lib/commands/cuckoo/ADDNX.js +11 -0
- package/dist/lib/commands/cuckoo/COUNT.d.ts +8 -0
- package/dist/lib/commands/cuckoo/COUNT.js +10 -0
- package/dist/lib/commands/cuckoo/DEL.d.ts +11 -0
- package/dist/lib/commands/cuckoo/DEL.js +11 -0
- package/dist/lib/commands/cuckoo/EXISTS.d.ts +11 -0
- package/dist/lib/commands/cuckoo/EXISTS.js +11 -0
- package/dist/lib/commands/cuckoo/INFO.d.ts +8 -0
- package/dist/lib/commands/cuckoo/INFO.js +51 -0
- package/dist/lib/commands/cuckoo/INSERT.d.ts +17 -0
- package/dist/lib/commands/cuckoo/INSERT.js +22 -0
- package/dist/lib/commands/cuckoo/INSERTNX.d.ts +10 -0
- package/dist/lib/commands/cuckoo/INSERTNX.js +32 -0
- package/dist/lib/commands/cuckoo/LOADCHUNK.d.ts +8 -0
- package/dist/lib/commands/cuckoo/LOADCHUNK.js +10 -0
- package/dist/lib/commands/cuckoo/RESERVE.d.ts +13 -0
- package/dist/lib/commands/cuckoo/RESERVE.js +20 -0
- package/dist/lib/commands/cuckoo/SCANDUMP.d.ts +11 -0
- package/dist/lib/commands/cuckoo/SCANDUMP.js +15 -0
- package/dist/lib/commands/cuckoo/index.d.ts +177 -0
- package/dist/lib/commands/cuckoo/index.js +40 -0
- package/dist/lib/commands/index.d.ts +763 -0
- package/dist/lib/commands/index.js +17 -0
- package/dist/lib/commands/t-digest/ADD.d.ts +8 -0
- package/dist/lib/commands/t-digest/ADD.js +14 -0
- package/dist/lib/commands/t-digest/BYRANK.d.ts +12 -0
- package/dist/lib/commands/t-digest/BYRANK.js +18 -0
- package/dist/lib/commands/t-digest/BYREVRANK.d.ts +10 -0
- package/dist/lib/commands/t-digest/BYREVRANK.js +32 -0
- package/dist/lib/commands/t-digest/CDF.d.ts +11 -0
- package/dist/lib/commands/t-digest/CDF.js +15 -0
- package/dist/lib/commands/t-digest/CREATE.d.ts +11 -0
- package/dist/lib/commands/t-digest/CREATE.js +14 -0
- package/dist/lib/commands/t-digest/INFO.d.ts +8 -0
- package/dist/lib/commands/t-digest/INFO.js +47 -0
- package/dist/lib/commands/t-digest/MAX.d.ts +11 -0
- package/dist/lib/commands/t-digest/MAX.js +11 -0
- package/dist/lib/commands/t-digest/MERGE.d.ts +13 -0
- package/dist/lib/commands/t-digest/MERGE.js +18 -0
- package/dist/lib/commands/t-digest/MIN.d.ts +11 -0
- package/dist/lib/commands/t-digest/MIN.js +11 -0
- package/dist/lib/commands/t-digest/QUANTILE.d.ts +11 -0
- package/dist/lib/commands/t-digest/QUANTILE.js +15 -0
- package/dist/lib/commands/t-digest/RANK.d.ts +9 -0
- package/dist/lib/commands/t-digest/RANK.js +17 -0
- package/dist/lib/commands/t-digest/RESET.d.ts +8 -0
- package/dist/lib/commands/t-digest/RESET.js +10 -0
- package/dist/lib/commands/t-digest/REVRANK.d.ts +7 -0
- package/dist/lib/commands/t-digest/REVRANK.js +32 -0
- package/dist/lib/commands/t-digest/TRIMMED_MEAN.d.ts +11 -0
- package/dist/lib/commands/t-digest/TRIMMED_MEAN.js +16 -0
- package/dist/lib/commands/t-digest/index.d.ts +213 -0
- package/dist/lib/commands/t-digest/index.js +49 -0
- package/dist/lib/commands/top-k/ADD.d.ts +9 -0
- package/dist/lib/commands/top-k/ADD.js +11 -0
- package/dist/lib/commands/top-k/COUNT.d.ts +9 -0
- package/dist/lib/commands/top-k/COUNT.js +11 -0
- package/dist/lib/commands/top-k/INCRBY.d.ts +12 -0
- package/dist/lib/commands/top-k/INCRBY.js +22 -0
- package/dist/lib/commands/top-k/INFO.d.ts +34 -0
- package/dist/lib/commands/top-k/INFO.js +18 -0
- package/dist/lib/commands/top-k/LIST.d.ts +8 -0
- package/dist/lib/commands/top-k/LIST.js +10 -0
- package/dist/lib/commands/top-k/LIST_WITHCOUNT.d.ts +11 -0
- package/dist/lib/commands/top-k/LIST_WITHCOUNT.js +19 -0
- package/dist/lib/commands/top-k/QUERY.d.ts +12 -0
- package/dist/lib/commands/top-k/QUERY.js +11 -0
- package/dist/lib/commands/top-k/RESERVE.d.ts +13 -0
- package/dist/lib/commands/top-k/RESERVE.js +14 -0
- package/dist/lib/commands/top-k/index.d.ts +127 -0
- package/dist/lib/commands/top-k/index.js +31 -0
- package/dist/{index.js → lib/index.js} +4 -1
- package/package.json +22 -18
- package/dist/commands/bloom/ADD.d.ts +0 -3
- package/dist/commands/bloom/ADD.js +0 -10
- package/dist/commands/bloom/CARD.d.ts +0 -4
- package/dist/commands/bloom/CARD.js +0 -9
- package/dist/commands/bloom/EXISTS.d.ts +0 -4
- package/dist/commands/bloom/EXISTS.js +0 -11
- package/dist/commands/bloom/INFO.d.ts +0 -23
- package/dist/commands/bloom/INFO.js +0 -19
- package/dist/commands/bloom/INSERT.d.ts +0 -11
- package/dist/commands/bloom/INSERT.js +0 -28
- package/dist/commands/bloom/LOADCHUNK.d.ts +0 -4
- package/dist/commands/bloom/LOADCHUNK.js +0 -8
- package/dist/commands/bloom/MADD.d.ts +0 -3
- package/dist/commands/bloom/MADD.js +0 -10
- package/dist/commands/bloom/MEXISTS.d.ts +0 -4
- package/dist/commands/bloom/MEXISTS.js +0 -11
- package/dist/commands/bloom/RESERVE.d.ts +0 -8
- package/dist/commands/bloom/RESERVE.js +0 -15
- package/dist/commands/bloom/SCANDUMP.d.ts +0 -13
- package/dist/commands/bloom/SCANDUMP.js +0 -16
- package/dist/commands/bloom/index.d.ts +0 -33
- package/dist/commands/bloom/index.js +0 -34
- package/dist/commands/count-min-sketch/INCRBY.d.ts +0 -8
- package/dist/commands/count-min-sketch/INCRBY.js +0 -20
- package/dist/commands/count-min-sketch/INFO.d.ts +0 -17
- package/dist/commands/count-min-sketch/INFO.js +0 -17
- package/dist/commands/count-min-sketch/INITBYDIM.d.ts +0 -3
- package/dist/commands/count-min-sketch/INITBYDIM.js +0 -8
- package/dist/commands/count-min-sketch/INITBYPROB.d.ts +0 -3
- package/dist/commands/count-min-sketch/INITBYPROB.js +0 -8
- package/dist/commands/count-min-sketch/MERGE.d.ts +0 -9
- package/dist/commands/count-min-sketch/MERGE.js +0 -28
- package/dist/commands/count-min-sketch/QUERY.d.ts +0 -5
- package/dist/commands/count-min-sketch/QUERY.js +0 -10
- package/dist/commands/count-min-sketch/index.d.ts +0 -21
- package/dist/commands/count-min-sketch/index.js +0 -22
- package/dist/commands/cuckoo/ADD.d.ts +0 -3
- package/dist/commands/cuckoo/ADD.js +0 -10
- package/dist/commands/cuckoo/ADDNX.d.ts +0 -3
- package/dist/commands/cuckoo/ADDNX.js +0 -10
- package/dist/commands/cuckoo/COUNT.d.ts +0 -3
- package/dist/commands/cuckoo/COUNT.js +0 -8
- package/dist/commands/cuckoo/DEL.d.ts +0 -3
- package/dist/commands/cuckoo/DEL.js +0 -10
- package/dist/commands/cuckoo/EXISTS.d.ts +0 -4
- package/dist/commands/cuckoo/EXISTS.js +0 -11
- package/dist/commands/cuckoo/INFO.d.ts +0 -32
- package/dist/commands/cuckoo/INFO.js +0 -22
- package/dist/commands/cuckoo/INSERT.d.ts +0 -5
- package/dist/commands/cuckoo/INSERT.js +0 -11
- package/dist/commands/cuckoo/INSERTNX.d.ts +0 -5
- package/dist/commands/cuckoo/INSERTNX.js +0 -11
- package/dist/commands/cuckoo/LOADCHUNK.d.ts +0 -4
- package/dist/commands/cuckoo/LOADCHUNK.js +0 -8
- package/dist/commands/cuckoo/RESERVE.d.ts +0 -9
- package/dist/commands/cuckoo/RESERVE.js +0 -18
- package/dist/commands/cuckoo/SCANDUMP.d.ts +0 -12
- package/dist/commands/cuckoo/SCANDUMP.js +0 -15
- package/dist/commands/cuckoo/index.d.ts +0 -42
- package/dist/commands/cuckoo/index.js +0 -51
- package/dist/commands/index.d.ts +0 -111
- package/dist/commands/index.js +0 -14
- package/dist/commands/t-digest/ADD.d.ts +0 -4
- package/dist/commands/t-digest/ADD.js +0 -12
- package/dist/commands/t-digest/BYRANK.d.ts +0 -5
- package/dist/commands/t-digest/BYRANK.js +0 -15
- package/dist/commands/t-digest/BYREVRANK.d.ts +0 -5
- package/dist/commands/t-digest/BYREVRANK.js +0 -15
- package/dist/commands/t-digest/CDF.d.ts +0 -5
- package/dist/commands/t-digest/CDF.js +0 -15
- package/dist/commands/t-digest/CREATE.d.ts +0 -5
- package/dist/commands/t-digest/CREATE.js +0 -9
- package/dist/commands/t-digest/INFO.d.ts +0 -31
- package/dist/commands/t-digest/INFO.js +0 -24
- package/dist/commands/t-digest/MAX.d.ts +0 -5
- package/dist/commands/t-digest/MAX.js +0 -14
- package/dist/commands/t-digest/MERGE.d.ts +0 -9
- package/dist/commands/t-digest/MERGE.js +0 -15
- package/dist/commands/t-digest/MIN.d.ts +0 -5
- package/dist/commands/t-digest/MIN.js +0 -14
- package/dist/commands/t-digest/QUANTILE.d.ts +0 -5
- package/dist/commands/t-digest/QUANTILE.js +0 -18
- package/dist/commands/t-digest/RANK.d.ts +0 -5
- package/dist/commands/t-digest/RANK.js +0 -13
- package/dist/commands/t-digest/RESET.d.ts +0 -4
- package/dist/commands/t-digest/RESET.js +0 -8
- package/dist/commands/t-digest/REVRANK.d.ts +0 -5
- package/dist/commands/t-digest/REVRANK.js +0 -13
- package/dist/commands/t-digest/TRIMMED_MEAN.d.ts +0 -5
- package/dist/commands/t-digest/TRIMMED_MEAN.js +0 -16
- package/dist/commands/t-digest/index.d.ts +0 -52
- package/dist/commands/t-digest/index.js +0 -71
- package/dist/commands/top-k/ADD.d.ts +0 -4
- package/dist/commands/top-k/ADD.js +0 -9
- package/dist/commands/top-k/COUNT.d.ts +0 -5
- package/dist/commands/top-k/COUNT.js +0 -10
- package/dist/commands/top-k/INCRBY.d.ts +0 -8
- package/dist/commands/top-k/INCRBY.js +0 -20
- package/dist/commands/top-k/INFO.d.ts +0 -20
- package/dist/commands/top-k/INFO.js +0 -18
- package/dist/commands/top-k/LIST.d.ts +0 -4
- package/dist/commands/top-k/LIST.js +0 -9
- package/dist/commands/top-k/LIST_WITHCOUNT.d.ts +0 -10
- package/dist/commands/top-k/LIST_WITHCOUNT.js +0 -20
- package/dist/commands/top-k/QUERY.d.ts +0 -5
- package/dist/commands/top-k/QUERY.js +0 -10
- package/dist/commands/top-k/RESERVE.d.ts +0 -10
- package/dist/commands/top-k/RESERVE.js +0 -13
- package/dist/commands/top-k/index.d.ts +0 -27
- package/dist/commands/top-k/index.js +0 -28
- /package/dist/{index.d.ts → lib/index.d.ts} +0 -0
|
@@ -0,0 +1,763 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
readonly bf: {
|
|
3
|
+
readonly ADD: {
|
|
4
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
5
|
+
readonly IS_READ_ONLY: false;
|
|
6
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
7
|
+
readonly transformReply: {
|
|
8
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
9
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
readonly add: {
|
|
13
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
14
|
+
readonly IS_READ_ONLY: false;
|
|
15
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
16
|
+
readonly transformReply: {
|
|
17
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
18
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
readonly CARD: {
|
|
22
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
23
|
+
readonly IS_READ_ONLY: true;
|
|
24
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
25
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
26
|
+
};
|
|
27
|
+
readonly card: {
|
|
28
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
29
|
+
readonly IS_READ_ONLY: true;
|
|
30
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
31
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
32
|
+
};
|
|
33
|
+
readonly EXISTS: {
|
|
34
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
35
|
+
readonly IS_READ_ONLY: true;
|
|
36
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
37
|
+
readonly transformReply: {
|
|
38
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
39
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
readonly exists: {
|
|
43
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
44
|
+
readonly IS_READ_ONLY: true;
|
|
45
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
46
|
+
readonly transformReply: {
|
|
47
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
48
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
readonly INFO: {
|
|
52
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
53
|
+
readonly IS_READ_ONLY: true;
|
|
54
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
55
|
+
readonly transformReply: () => any;
|
|
56
|
+
};
|
|
57
|
+
readonly info: {
|
|
58
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
59
|
+
readonly IS_READ_ONLY: true;
|
|
60
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
61
|
+
readonly transformReply: () => any;
|
|
62
|
+
};
|
|
63
|
+
readonly INSERT: {
|
|
64
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
65
|
+
readonly IS_READ_ONLY: false;
|
|
66
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./bloom/INSERT").BfInsertOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
67
|
+
readonly transformReply: {
|
|
68
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
69
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
readonly insert: {
|
|
73
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
74
|
+
readonly IS_READ_ONLY: false;
|
|
75
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./bloom/INSERT").BfInsertOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
76
|
+
readonly transformReply: {
|
|
77
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
78
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
readonly LOADCHUNK: {
|
|
82
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
83
|
+
readonly IS_READ_ONLY: false;
|
|
84
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number, chunk: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
85
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
86
|
+
};
|
|
87
|
+
readonly loadChunk: {
|
|
88
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
89
|
+
readonly IS_READ_ONLY: false;
|
|
90
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number, chunk: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
91
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
92
|
+
};
|
|
93
|
+
readonly MADD: {
|
|
94
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
95
|
+
readonly IS_READ_ONLY: false;
|
|
96
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
97
|
+
readonly transformReply: {
|
|
98
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
99
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
readonly mAdd: {
|
|
103
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
104
|
+
readonly IS_READ_ONLY: false;
|
|
105
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
106
|
+
readonly transformReply: {
|
|
107
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
108
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
readonly MEXISTS: {
|
|
112
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
113
|
+
readonly IS_READ_ONLY: true;
|
|
114
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
115
|
+
readonly transformReply: {
|
|
116
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
117
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
readonly mExists: {
|
|
121
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
122
|
+
readonly IS_READ_ONLY: true;
|
|
123
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
124
|
+
readonly transformReply: {
|
|
125
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
126
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
readonly RESERVE: {
|
|
130
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
131
|
+
readonly IS_READ_ONLY: true;
|
|
132
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, errorRate: number, capacity: number, options?: import("./bloom/RESERVE").BfReserveOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
133
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
134
|
+
};
|
|
135
|
+
readonly reserve: {
|
|
136
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
137
|
+
readonly IS_READ_ONLY: true;
|
|
138
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, errorRate: number, capacity: number, options?: import("./bloom/RESERVE").BfReserveOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
139
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
140
|
+
};
|
|
141
|
+
readonly SCANDUMP: {
|
|
142
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
143
|
+
readonly IS_READ_ONLY: true;
|
|
144
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number) => import("@redis/client").RedisArgument[];
|
|
145
|
+
readonly transformReply: (this: void, reply: [import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>]) => {
|
|
146
|
+
iterator: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
147
|
+
chunk: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
readonly scanDump: {
|
|
151
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
152
|
+
readonly IS_READ_ONLY: true;
|
|
153
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number) => import("@redis/client").RedisArgument[];
|
|
154
|
+
readonly transformReply: (this: void, reply: [import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>]) => {
|
|
155
|
+
iterator: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
156
|
+
chunk: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
readonly cms: {
|
|
161
|
+
readonly INCRBY: {
|
|
162
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
163
|
+
readonly IS_READ_ONLY: false;
|
|
164
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("./count-min-sketch/INCRBY").BfIncrByItem | import("./count-min-sketch/INCRBY").BfIncrByItem[]) => import("@redis/client").RedisArgument[];
|
|
165
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
166
|
+
};
|
|
167
|
+
readonly incrBy: {
|
|
168
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
169
|
+
readonly IS_READ_ONLY: false;
|
|
170
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("./count-min-sketch/INCRBY").BfIncrByItem | import("./count-min-sketch/INCRBY").BfIncrByItem[]) => import("@redis/client").RedisArgument[];
|
|
171
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
172
|
+
};
|
|
173
|
+
readonly INFO: {
|
|
174
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
175
|
+
readonly IS_READ_ONLY: true;
|
|
176
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
177
|
+
readonly transformReply: {
|
|
178
|
+
readonly 2: (reply: [import("@redis/client/dist/lib/RESP/types").BlobStringReply<"width">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"depth">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"count">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>]) => {
|
|
179
|
+
width: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
180
|
+
depth: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
181
|
+
count: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
182
|
+
};
|
|
183
|
+
readonly 3: () => import("./count-min-sketch/INFO").BfInfoReply;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
readonly info: {
|
|
187
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
188
|
+
readonly IS_READ_ONLY: true;
|
|
189
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
190
|
+
readonly transformReply: {
|
|
191
|
+
readonly 2: (reply: [import("@redis/client/dist/lib/RESP/types").BlobStringReply<"width">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"depth">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"count">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>]) => {
|
|
192
|
+
width: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
193
|
+
depth: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
194
|
+
count: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
195
|
+
};
|
|
196
|
+
readonly 3: () => import("./count-min-sketch/INFO").BfInfoReply;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
readonly INITBYDIM: {
|
|
200
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
201
|
+
readonly IS_READ_ONLY: false;
|
|
202
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, width: number, depth: number) => import("@redis/client").RedisArgument[];
|
|
203
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
204
|
+
};
|
|
205
|
+
readonly initByDim: {
|
|
206
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
207
|
+
readonly IS_READ_ONLY: false;
|
|
208
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, width: number, depth: number) => import("@redis/client").RedisArgument[];
|
|
209
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
210
|
+
};
|
|
211
|
+
readonly INITBYPROB: {
|
|
212
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
213
|
+
readonly IS_READ_ONLY: false;
|
|
214
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, error: number, probability: number) => import("@redis/client").RedisArgument[];
|
|
215
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
216
|
+
};
|
|
217
|
+
readonly initByProb: {
|
|
218
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
219
|
+
readonly IS_READ_ONLY: false;
|
|
220
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, error: number, probability: number) => import("@redis/client").RedisArgument[];
|
|
221
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
222
|
+
};
|
|
223
|
+
readonly MERGE: {
|
|
224
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
225
|
+
readonly IS_READ_ONLY: false;
|
|
226
|
+
readonly transformArguments: (this: void, destination: import("@redis/client").RedisArgument, source: import("./count-min-sketch/MERGE").BfMergeSketches) => import("@redis/client").RedisArgument[];
|
|
227
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
228
|
+
};
|
|
229
|
+
readonly merge: {
|
|
230
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
231
|
+
readonly IS_READ_ONLY: false;
|
|
232
|
+
readonly transformArguments: (this: void, destination: import("@redis/client").RedisArgument, source: import("./count-min-sketch/MERGE").BfMergeSketches) => import("@redis/client").RedisArgument[];
|
|
233
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
234
|
+
};
|
|
235
|
+
readonly QUERY: {
|
|
236
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
237
|
+
readonly IS_READ_ONLY: true;
|
|
238
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
239
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
240
|
+
};
|
|
241
|
+
readonly query: {
|
|
242
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
243
|
+
readonly IS_READ_ONLY: true;
|
|
244
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
245
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
readonly cf: {
|
|
249
|
+
readonly ADD: {
|
|
250
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
251
|
+
readonly IS_READ_ONLY: false;
|
|
252
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
253
|
+
readonly transformReply: {
|
|
254
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
255
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
readonly add: {
|
|
259
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
260
|
+
readonly IS_READ_ONLY: false;
|
|
261
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
262
|
+
readonly transformReply: {
|
|
263
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
264
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
readonly ADDNX: {
|
|
268
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
269
|
+
readonly IS_READ_ONLY: false;
|
|
270
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
271
|
+
readonly transformReply: {
|
|
272
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
273
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
readonly addNX: {
|
|
277
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
278
|
+
readonly IS_READ_ONLY: false;
|
|
279
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
280
|
+
readonly transformReply: {
|
|
281
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
282
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
readonly COUNT: {
|
|
286
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
287
|
+
readonly IS_READ_ONLY: true;
|
|
288
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
289
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
290
|
+
};
|
|
291
|
+
readonly count: {
|
|
292
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
293
|
+
readonly IS_READ_ONLY: true;
|
|
294
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
295
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
296
|
+
};
|
|
297
|
+
readonly DEL: {
|
|
298
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
299
|
+
readonly IS_READ_ONLY: false;
|
|
300
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
301
|
+
readonly transformReply: {
|
|
302
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
303
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
readonly del: {
|
|
307
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
308
|
+
readonly IS_READ_ONLY: false;
|
|
309
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
310
|
+
readonly transformReply: {
|
|
311
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
312
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
readonly EXISTS: {
|
|
316
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
317
|
+
readonly IS_READ_ONLY: false;
|
|
318
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
319
|
+
readonly transformReply: {
|
|
320
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
321
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
readonly exists: {
|
|
325
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
326
|
+
readonly IS_READ_ONLY: false;
|
|
327
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, item: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
328
|
+
readonly transformReply: {
|
|
329
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>) => boolean;
|
|
330
|
+
3: () => import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>;
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
readonly INFO: {
|
|
334
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
335
|
+
readonly IS_READ_ONLY: true;
|
|
336
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
337
|
+
readonly transformReply: () => any;
|
|
338
|
+
};
|
|
339
|
+
readonly info: {
|
|
340
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
341
|
+
readonly IS_READ_ONLY: true;
|
|
342
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
343
|
+
readonly transformReply: () => any;
|
|
344
|
+
};
|
|
345
|
+
readonly INSERT: {
|
|
346
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
347
|
+
readonly IS_READ_ONLY: false;
|
|
348
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./cuckoo/INSERT").CfInsertOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
349
|
+
readonly transformReply: {
|
|
350
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
351
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
readonly insert: {
|
|
355
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
356
|
+
readonly IS_READ_ONLY: false;
|
|
357
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./cuckoo/INSERT").CfInsertOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
358
|
+
readonly transformReply: {
|
|
359
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
360
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
readonly INSERTNX: {
|
|
364
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
365
|
+
readonly IS_READ_ONLY: false;
|
|
366
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./cuckoo/INSERT").CfInsertOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
367
|
+
readonly transformReply: {
|
|
368
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
369
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
readonly insertNX: {
|
|
373
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
374
|
+
readonly IS_READ_ONLY: false;
|
|
375
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./cuckoo/INSERT").CfInsertOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
376
|
+
readonly transformReply: {
|
|
377
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
378
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
readonly LOADCHUNK: {
|
|
382
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
383
|
+
readonly IS_READ_ONLY: false;
|
|
384
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number, chunk: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
385
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
386
|
+
};
|
|
387
|
+
readonly loadChunk: {
|
|
388
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
389
|
+
readonly IS_READ_ONLY: false;
|
|
390
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number, chunk: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
391
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
392
|
+
};
|
|
393
|
+
readonly RESERVE: {
|
|
394
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
395
|
+
readonly IS_READ_ONLY: false;
|
|
396
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, capacity: number, options?: import("./cuckoo/RESERVE").CfReserveOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
397
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
398
|
+
};
|
|
399
|
+
readonly reserve: {
|
|
400
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
401
|
+
readonly IS_READ_ONLY: false;
|
|
402
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, capacity: number, options?: import("./cuckoo/RESERVE").CfReserveOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
403
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
404
|
+
};
|
|
405
|
+
readonly SCANDUMP: {
|
|
406
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
407
|
+
readonly IS_READ_ONLY: true;
|
|
408
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number) => import("@redis/client").RedisArgument[];
|
|
409
|
+
readonly transformReply: (this: void, reply: [import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<string> | import("@redis/client/dist/lib/RESP/types").NullReply]) => {
|
|
410
|
+
iterator: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
411
|
+
chunk: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string> | import("@redis/client/dist/lib/RESP/types").NullReply;
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
readonly scanDump: {
|
|
415
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
416
|
+
readonly IS_READ_ONLY: true;
|
|
417
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, iterator: number) => import("@redis/client").RedisArgument[];
|
|
418
|
+
readonly transformReply: (this: void, reply: [import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<string> | import("@redis/client/dist/lib/RESP/types").NullReply]) => {
|
|
419
|
+
iterator: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
420
|
+
chunk: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string> | import("@redis/client/dist/lib/RESP/types").NullReply;
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
readonly tDigest: {
|
|
425
|
+
readonly ADD: {
|
|
426
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
427
|
+
readonly IS_READ_ONLY: false;
|
|
428
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
429
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
430
|
+
};
|
|
431
|
+
readonly add: {
|
|
432
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
433
|
+
readonly IS_READ_ONLY: false;
|
|
434
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
435
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
436
|
+
};
|
|
437
|
+
readonly BYRANK: {
|
|
438
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
439
|
+
readonly IS_READ_ONLY: true;
|
|
440
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, ranks: number[]) => import("@redis/client").RedisArgument[];
|
|
441
|
+
readonly transformReply: {
|
|
442
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
443
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
readonly byRank: {
|
|
447
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
448
|
+
readonly IS_READ_ONLY: true;
|
|
449
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, ranks: number[]) => import("@redis/client").RedisArgument[];
|
|
450
|
+
readonly transformReply: {
|
|
451
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
452
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
readonly BYREVRANK: {
|
|
456
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
457
|
+
readonly IS_READ_ONLY: true;
|
|
458
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, ranks: number[]) => import("@redis/client").RedisArgument[];
|
|
459
|
+
readonly transformReply: {
|
|
460
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
461
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
readonly byRevRank: {
|
|
465
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
466
|
+
readonly IS_READ_ONLY: true;
|
|
467
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, ranks: number[]) => import("@redis/client").RedisArgument[];
|
|
468
|
+
readonly transformReply: {
|
|
469
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
470
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
471
|
+
};
|
|
472
|
+
};
|
|
473
|
+
readonly CDF: {
|
|
474
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
475
|
+
readonly IS_READ_ONLY: true;
|
|
476
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
477
|
+
readonly transformReply: {
|
|
478
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
479
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
480
|
+
};
|
|
481
|
+
};
|
|
482
|
+
readonly cdf: {
|
|
483
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
484
|
+
readonly IS_READ_ONLY: true;
|
|
485
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
486
|
+
readonly transformReply: {
|
|
487
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
488
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
readonly CREATE: {
|
|
492
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
493
|
+
readonly IS_READ_ONLY: false;
|
|
494
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, options?: import("./t-digest/CREATE").TDigestCreateOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
495
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
496
|
+
};
|
|
497
|
+
readonly create: {
|
|
498
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
499
|
+
readonly IS_READ_ONLY: false;
|
|
500
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, options?: import("./t-digest/CREATE").TDigestCreateOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
501
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
502
|
+
};
|
|
503
|
+
readonly INFO: {
|
|
504
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
505
|
+
readonly IS_READ_ONLY: true;
|
|
506
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
507
|
+
readonly transformReply: () => any;
|
|
508
|
+
};
|
|
509
|
+
readonly info: {
|
|
510
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
511
|
+
readonly IS_READ_ONLY: true;
|
|
512
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
513
|
+
readonly transformReply: () => any;
|
|
514
|
+
};
|
|
515
|
+
readonly MAX: {
|
|
516
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
517
|
+
readonly IS_READ_ONLY: true;
|
|
518
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
519
|
+
readonly transformReply: {
|
|
520
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>) => number;
|
|
521
|
+
3: () => import("@redis/client/dist/lib/RESP/types").DoubleReply<number>;
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
readonly max: {
|
|
525
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
526
|
+
readonly IS_READ_ONLY: true;
|
|
527
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
528
|
+
readonly transformReply: {
|
|
529
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>) => number;
|
|
530
|
+
3: () => import("@redis/client/dist/lib/RESP/types").DoubleReply<number>;
|
|
531
|
+
};
|
|
532
|
+
};
|
|
533
|
+
readonly MERGE: {
|
|
534
|
+
readonly FIRST_KEY_INDEX: undefined;
|
|
535
|
+
readonly IS_READ_ONLY: false;
|
|
536
|
+
readonly transformArguments: (this: void, destination: import("@redis/client").RedisArgument, source: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./t-digest/MERGE").TDigestMergeOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
537
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
538
|
+
};
|
|
539
|
+
readonly merge: {
|
|
540
|
+
readonly FIRST_KEY_INDEX: undefined;
|
|
541
|
+
readonly IS_READ_ONLY: false;
|
|
542
|
+
readonly transformArguments: (this: void, destination: import("@redis/client").RedisArgument, source: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument, options?: import("./t-digest/MERGE").TDigestMergeOptions | undefined) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
543
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
544
|
+
};
|
|
545
|
+
readonly MIN: {
|
|
546
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
547
|
+
readonly IS_READ_ONLY: true;
|
|
548
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
549
|
+
readonly transformReply: {
|
|
550
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>) => number;
|
|
551
|
+
3: () => import("@redis/client/dist/lib/RESP/types").DoubleReply<number>;
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
readonly min: {
|
|
555
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
556
|
+
readonly IS_READ_ONLY: true;
|
|
557
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
558
|
+
readonly transformReply: {
|
|
559
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>) => number;
|
|
560
|
+
3: () => import("@redis/client/dist/lib/RESP/types").DoubleReply<number>;
|
|
561
|
+
};
|
|
562
|
+
};
|
|
563
|
+
readonly QUANTILE: {
|
|
564
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
565
|
+
readonly IS_READ_ONLY: true;
|
|
566
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, quantiles: number[]) => import("@redis/client").RedisArgument[];
|
|
567
|
+
readonly transformReply: {
|
|
568
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
569
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
readonly quantile: {
|
|
573
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
574
|
+
readonly IS_READ_ONLY: true;
|
|
575
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, quantiles: number[]) => import("@redis/client").RedisArgument[];
|
|
576
|
+
readonly transformReply: {
|
|
577
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>[]) => number[];
|
|
578
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").DoubleReply<number>>;
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
readonly RANK: {
|
|
582
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
583
|
+
readonly IS_READ_ONLY: true;
|
|
584
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
585
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
586
|
+
};
|
|
587
|
+
readonly rank: {
|
|
588
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
589
|
+
readonly IS_READ_ONLY: true;
|
|
590
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
591
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
592
|
+
};
|
|
593
|
+
readonly RESET: {
|
|
594
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
595
|
+
readonly IS_READ_ONLY: false;
|
|
596
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
597
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
598
|
+
};
|
|
599
|
+
readonly reset: {
|
|
600
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
601
|
+
readonly IS_READ_ONLY: false;
|
|
602
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
603
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
604
|
+
};
|
|
605
|
+
readonly REVRANK: {
|
|
606
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
607
|
+
readonly IS_READ_ONLY: true;
|
|
608
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
609
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
610
|
+
};
|
|
611
|
+
readonly revRank: {
|
|
612
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
613
|
+
readonly IS_READ_ONLY: true;
|
|
614
|
+
readonly transformArguments: (key: import("@redis/client").RedisArgument, values: number[]) => import("@redis/client").RedisArgument[];
|
|
615
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
616
|
+
};
|
|
617
|
+
readonly TRIMMED_MEAN: {
|
|
618
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
619
|
+
readonly IS_READ_ONLY: true;
|
|
620
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, lowCutPercentile: number, highCutPercentile: number) => import("@redis/client").RedisArgument[];
|
|
621
|
+
readonly transformReply: {
|
|
622
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>) => number;
|
|
623
|
+
3: () => import("@redis/client/dist/lib/RESP/types").DoubleReply<number>;
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
readonly trimmedMean: {
|
|
627
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
628
|
+
readonly IS_READ_ONLY: true;
|
|
629
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, lowCutPercentile: number, highCutPercentile: number) => import("@redis/client").RedisArgument[];
|
|
630
|
+
readonly transformReply: {
|
|
631
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>) => number;
|
|
632
|
+
3: () => import("@redis/client/dist/lib/RESP/types").DoubleReply<number>;
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
readonly topK: {
|
|
637
|
+
readonly ADD: {
|
|
638
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
639
|
+
readonly IS_READ_ONLY: false;
|
|
640
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
641
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>>;
|
|
642
|
+
};
|
|
643
|
+
readonly add: {
|
|
644
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
645
|
+
readonly IS_READ_ONLY: false;
|
|
646
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
647
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>>;
|
|
648
|
+
};
|
|
649
|
+
readonly COUNT: {
|
|
650
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
651
|
+
readonly IS_READ_ONLY: true;
|
|
652
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
653
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
654
|
+
};
|
|
655
|
+
readonly count: {
|
|
656
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
657
|
+
readonly IS_READ_ONLY: true;
|
|
658
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
659
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<number>>;
|
|
660
|
+
};
|
|
661
|
+
readonly INCRBY: {
|
|
662
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
663
|
+
readonly IS_READ_ONLY: false;
|
|
664
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("./top-k/INCRBY").TopKIncrByItem | import("./top-k/INCRBY").TopKIncrByItem[]) => import("@redis/client").RedisArgument[];
|
|
665
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NullReply | import("@redis/client/dist/lib/RESP/types").SimpleStringReply<string>>;
|
|
666
|
+
};
|
|
667
|
+
readonly incrBy: {
|
|
668
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
669
|
+
readonly IS_READ_ONLY: false;
|
|
670
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("./top-k/INCRBY").TopKIncrByItem | import("./top-k/INCRBY").TopKIncrByItem[]) => import("@redis/client").RedisArgument[];
|
|
671
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NullReply | import("@redis/client/dist/lib/RESP/types").SimpleStringReply<string>>;
|
|
672
|
+
};
|
|
673
|
+
readonly INFO: {
|
|
674
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
675
|
+
readonly IS_READ_ONLY: true;
|
|
676
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
677
|
+
readonly transformReply: {
|
|
678
|
+
readonly 2: (reply: [import("@redis/client/dist/lib/RESP/types").BlobStringReply<"k">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"width">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"depth">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"decay">, import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>]) => {
|
|
679
|
+
k: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
680
|
+
width: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
681
|
+
depth: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
682
|
+
decay: number;
|
|
683
|
+
};
|
|
684
|
+
readonly 3: () => import("./top-k/INFO").TopKInfoReply;
|
|
685
|
+
};
|
|
686
|
+
};
|
|
687
|
+
readonly info: {
|
|
688
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
689
|
+
readonly IS_READ_ONLY: true;
|
|
690
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
691
|
+
readonly transformReply: {
|
|
692
|
+
readonly 2: (reply: [import("@redis/client/dist/lib/RESP/types").BlobStringReply<"k">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"width">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"depth">, import("@redis/client/dist/lib/RESP/types").NumberReply<number>, import("@redis/client/dist/lib/RESP/types").BlobStringReply<"decay">, import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>]) => {
|
|
693
|
+
k: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
694
|
+
width: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
695
|
+
depth: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
696
|
+
decay: number;
|
|
697
|
+
};
|
|
698
|
+
readonly 3: () => import("./top-k/INFO").TopKInfoReply;
|
|
699
|
+
};
|
|
700
|
+
};
|
|
701
|
+
readonly LIST_WITHCOUNT: {
|
|
702
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
703
|
+
readonly IS_READ_ONLY: true;
|
|
704
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
705
|
+
readonly transformReply: (this: void, rawReply: (import("@redis/client/dist/lib/RESP/types").NumberReply<number> | import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>)[]) => {
|
|
706
|
+
item: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>;
|
|
707
|
+
count: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
708
|
+
}[];
|
|
709
|
+
};
|
|
710
|
+
readonly listWithCount: {
|
|
711
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
712
|
+
readonly IS_READ_ONLY: true;
|
|
713
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
714
|
+
readonly transformReply: (this: void, rawReply: (import("@redis/client/dist/lib/RESP/types").NumberReply<number> | import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>)[]) => {
|
|
715
|
+
item: import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>;
|
|
716
|
+
count: import("@redis/client/dist/lib/RESP/types").NumberReply<number>;
|
|
717
|
+
}[];
|
|
718
|
+
};
|
|
719
|
+
readonly LIST: {
|
|
720
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
721
|
+
readonly IS_READ_ONLY: true;
|
|
722
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
723
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>>;
|
|
724
|
+
};
|
|
725
|
+
readonly list: {
|
|
726
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
727
|
+
readonly IS_READ_ONLY: true;
|
|
728
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument) => import("@redis/client").RedisArgument[];
|
|
729
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BlobStringReply<string>>;
|
|
730
|
+
};
|
|
731
|
+
readonly QUERY: {
|
|
732
|
+
readonly FIRST_KEY_INDEX: undefined;
|
|
733
|
+
readonly IS_READ_ONLY: false;
|
|
734
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
735
|
+
readonly transformReply: {
|
|
736
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
737
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
738
|
+
};
|
|
739
|
+
};
|
|
740
|
+
readonly query: {
|
|
741
|
+
readonly FIRST_KEY_INDEX: undefined;
|
|
742
|
+
readonly IS_READ_ONLY: false;
|
|
743
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, items: import("@redis/client/dist/lib/commands/generic-transformers").RedisVariadicArgument) => import("@redis/client/dist/lib/RESP/types").CommandArguments;
|
|
744
|
+
readonly transformReply: {
|
|
745
|
+
2: (reply: import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").NumberReply<0 | 1>>) => boolean[];
|
|
746
|
+
3: () => import("@redis/client/dist/lib/RESP/types").ArrayReply<import("@redis/client/dist/lib/RESP/types").BooleanReply<boolean>>;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
readonly RESERVE: {
|
|
750
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
751
|
+
readonly IS_READ_ONLY: false;
|
|
752
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, topK: number, options?: import("./top-k/RESERVE").TopKReserveOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
753
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
754
|
+
};
|
|
755
|
+
readonly reserve: {
|
|
756
|
+
readonly FIRST_KEY_INDEX: 1;
|
|
757
|
+
readonly IS_READ_ONLY: false;
|
|
758
|
+
readonly transformArguments: (this: void, key: import("@redis/client").RedisArgument, topK: number, options?: import("./top-k/RESERVE").TopKReserveOptions | undefined) => import("@redis/client").RedisArgument[];
|
|
759
|
+
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
};
|
|
763
|
+
export default _default;
|