You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
33 lines
884 B
TypeScript
33 lines
884 B
TypeScript
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
|
import { RedisArgument, ArrayReply, NumberReply, Command } from '@redis/client/dist/lib/RESP/types';
|
|
|
|
export interface BfIncrByItem {
|
|
item: RedisArgument;
|
|
incrementBy: number;
|
|
}
|
|
|
|
export default {
|
|
IS_READ_ONLY: false,
|
|
parseCommand(
|
|
parser: CommandParser,
|
|
key: RedisArgument,
|
|
items: BfIncrByItem | Array<BfIncrByItem>
|
|
) {
|
|
parser.push('CMS.INCRBY');
|
|
parser.pushKey(key);
|
|
|
|
if (Array.isArray(items)) {
|
|
for (const item of items) {
|
|
pushIncrByItem(parser, item);
|
|
}
|
|
} else {
|
|
pushIncrByItem(parser, items);
|
|
}
|
|
},
|
|
transformReply: undefined as unknown as () => ArrayReply<NumberReply>
|
|
} as const satisfies Command;
|
|
|
|
function pushIncrByItem(parser: CommandParser, { item, incrementBy }: BfIncrByItem): void {
|
|
parser.push(item, incrementBy.toString());
|
|
}
|