-first commit

This commit is contained in:
2025-11-11 12:36:06 +07:00
commit b99c214434
5683 changed files with 713336 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
/**
* Starts a coordinated failover between the primary and a replica
* @param parser - The Redis command parser
* @param options - Failover options including target host, abort flag, and timeout
*/
parseCommand(parser, options) {
parser.push('FAILOVER');
if (options?.TO) {
parser.push('TO', options.TO.host, options.TO.port.toString());
if (options.TO.FORCE) {
parser.push('FORCE');
}
}
if (options?.ABORT) {
parser.push('ABORT');
}
if (options?.TIMEOUT) {
parser.push('TIMEOUT', options.TIMEOUT.toString());
}
},
transformReply: undefined
};
//# sourceMappingURL=FAILOVER.js.map