25 lines
932 B
JavaScript
25 lines
932 B
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.default = {
|
||
|
|
NOT_KEYED_COMMAND: true,
|
||
|
|
IS_READ_ONLY: true,
|
||
|
|
/**
|
||
|
|
* Sets configuration parameters to the specified values
|
||
|
|
* @param parser - The Redis command parser
|
||
|
|
* @param parameterOrConfig - Either a single parameter name or a configuration object
|
||
|
|
* @param value - Value for the parameter (when using single parameter format)
|
||
|
|
*/
|
||
|
|
parseCommand(parser, ...[parameterOrConfig, value]) {
|
||
|
|
parser.push('CONFIG', 'SET');
|
||
|
|
if (typeof parameterOrConfig === 'string' || parameterOrConfig instanceof Buffer) {
|
||
|
|
parser.push(parameterOrConfig, value);
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
for (const [key, value] of Object.entries(parameterOrConfig)) {
|
||
|
|
parser.push(key, value);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
transformReply: undefined
|
||
|
|
};
|
||
|
|
//# sourceMappingURL=CONFIG_SET.js.map
|