1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00
This commit is contained in:
Leibale
2023-04-23 07:56:15 -04:00
parent 35d32e5b64
commit 9faa3e77c4
326 changed files with 14620 additions and 10931 deletions

View File

@@ -1,63 +1,59 @@
import { RedisCommandArgument, RedisCommandArguments } from '.';
export const FIRST_KEY_INDEX = 1;
import { RedisArgument, SimpleStringReply, BlobStringReply, NullReply, Command } from '../RESP/types';
type MaximumOneOf<T, K extends keyof T = keyof T> =
K extends keyof T ? { [P in K]?: T[K] } & Partial<Record<Exclude<keyof T, K>, never>> : never;
K extends keyof T ? { [P in K]?: T[K] } & Partial<Record<Exclude<keyof T, K>, never>> : never;
type SetTTL = MaximumOneOf<{
EX: number;
PX: number;
EXAT: number;
PXAT: number;
KEEPTTL: true;
EX: number;
PX: number;
EXAT: number;
PXAT: number;
KEEPTTL: true;
}>;
type SetGuards = MaximumOneOf<{
NX: true;
XX: true;
NX: true;
XX: true;
}>;
interface SetCommonOptions {
GET?: true;
GET?: true;
}
export type SetOptions = SetTTL & SetGuards & SetCommonOptions;
export function transformArguments(
key: RedisCommandArgument,
value: RedisCommandArgument | number,
options?: SetOptions
): RedisCommandArguments {
export default {
FIRST_KEY_INDEX: 1,
transformArguments(key: RedisArgument, value: RedisArgument | number, options?: SetOptions) {
const args = [
'SET',
key,
typeof value === 'number' ? value.toString() : value
'SET',
key,
typeof value === 'number' ? value.toString() : value
];
if (options?.EX !== undefined) {
args.push('EX', options.EX.toString());
args.push('EX', options.EX.toString());
} else if (options?.PX !== undefined) {
args.push('PX', options.PX.toString());
args.push('PX', options.PX.toString());
} else if (options?.EXAT !== undefined) {
args.push('EXAT', options.EXAT.toString());
args.push('EXAT', options.EXAT.toString());
} else if (options?.PXAT !== undefined) {
args.push('PXAT', options.PXAT.toString());
args.push('PXAT', options.PXAT.toString());
} else if (options?.KEEPTTL) {
args.push('KEEPTTL');
args.push('KEEPTTL');
}
if (options?.NX) {
args.push('NX');
args.push('NX');
} else if (options?.XX) {
args.push('XX');
args.push('XX');
}
if (options?.GET) {
args.push('GET');
args.push('GET');
}
return args;
}
export declare function transformReply(): RedisCommandArgument | null;
},
transformReply: undefined as unknown as () => SimpleStringReply<'OK'> | BlobStringReply | NullReply
} as const satisfies Command;