packages/client/lib/commands/CLIENT_NO-EVICT.ts
import { CommandParser } from '../client/parser';
import { SimpleStringReply, Command } from '../RESP/types';
export default {
NOT_KEYED_COMMAND: true,
IS_READ_ONLY: true,
parseCommand(parser: CommandParser, value: boolean) {
parser.push(
'CLIENT',
'NO-EVICT',
value ? 'ON' : 'OFF'
);
},
transformReply: undefined as unknown as () => SimpleStringReply<'OK'>
} as const satisfies Command;