15 lines
441 B
JavaScript
15 lines
441 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
NOT_KEYED_COMMAND: true,
|
|
IS_READ_ONLY: true,
|
|
/**
|
|
* Rewrites the Redis configuration file with the current configuration
|
|
* @param parser - The Redis command parser
|
|
*/
|
|
parseCommand(parser) {
|
|
parser.push('CONFIG', 'REWRITE');
|
|
},
|
|
transformReply: undefined
|
|
};
|
|
//# sourceMappingURL=CONFIG_REWRITE.js.map
|