You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
30 lines
966 B
TypeScript
30 lines
966 B
TypeScript
import { NullReply, ArrayReply, BlobStringReply, UnwrapReply, Command } from '@redis/client/dist/lib/RESP/types';
|
|
import { isNullReply } from '@redis/client/dist/lib/commands/generic-transformers';
|
|
import SUGGET from './SUGGET';
|
|
|
|
export default {
|
|
IS_READ_ONLY: SUGGET.IS_READ_ONLY,
|
|
parseCommand(...args: Parameters<typeof SUGGET.parseCommand>) {
|
|
SUGGET.parseCommand(...args);
|
|
args[0].push('WITHPAYLOADS');
|
|
},
|
|
transformReply(reply: NullReply | UnwrapReply<ArrayReply<BlobStringReply>>) {
|
|
if (isNullReply(reply)) return null;
|
|
|
|
const transformedReply: Array<{
|
|
suggestion: BlobStringReply;
|
|
payload: BlobStringReply;
|
|
}> = new Array(reply.length / 2);
|
|
let replyIndex = 0,
|
|
arrIndex = 0;
|
|
while (replyIndex < reply.length) {
|
|
transformedReply[arrIndex++] = {
|
|
suggestion: reply[replyIndex++],
|
|
payload: reply[replyIndex++]
|
|
};
|
|
}
|
|
|
|
return transformedReply;
|
|
}
|
|
} as const satisfies Command;
|