-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathZRANGESTORE.ts
62 lines (51 loc) · 1.41 KB
/
ZRANGESTORE.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { RedisCommandArgument, RedisCommandArguments } from '.';
import { transformStringNumberInfinityArgument } from './generic-transformers';
export const FIRST_KEY_INDEX = 1;
interface ZRangeStoreOptions {
BY?: 'SCORE' | 'LEX';
REV?: true;
LIMIT?: {
offset: number;
count: number;
};
WITHSCORES?: true;
}
export function transformArguments(
dst: RedisCommandArgument,
src: RedisCommandArgument,
min: RedisCommandArgument | number,
max: RedisCommandArgument | number,
options?: ZRangeStoreOptions
): RedisCommandArguments {
const args = [
'ZRANGESTORE',
dst,
src,
transformStringNumberInfinityArgument(min),
transformStringNumberInfinityArgument(max)
];
switch (options?.BY) {
case 'SCORE':
args.push('BYSCORE');
break;
case 'LEX':
args.push('BYLEX');
break;
}
if (options?.REV) {
args.push('REV');
}
if (options?.LIMIT) {
args.push('LIMIT', options.LIMIT.offset.toString(), options.LIMIT.count.toString());
}
if (options?.WITHSCORES) {
args.push('WITHSCORES');
}
return args;
}
export function transformReply(reply: number): number {
if (typeof reply !== 'number') {
throw new TypeError(`Upgrade to Redis 6.2.5 and up (https://github.com/redis/redis/pull/9089)`);
}
return reply;
}