-first commit
This commit is contained in:
20
node_modules/@redis/client/dist/lib/commands/BGSAVE.js
generated
vendored
Normal file
20
node_modules/@redis/client/dist/lib/commands/BGSAVE.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
NOT_KEYED_COMMAND: true,
|
||||
IS_READ_ONLY: true,
|
||||
/**
|
||||
* Asynchronously saves the dataset to disk
|
||||
* @param parser - The Redis command parser
|
||||
* @param options - Optional configuration
|
||||
* @param options.SCHEDULE - Schedule a BGSAVE operation when no BGSAVE is already in progress
|
||||
*/
|
||||
parseCommand(parser, options) {
|
||||
parser.push('BGSAVE');
|
||||
if (options?.SCHEDULE) {
|
||||
parser.push('SCHEDULE');
|
||||
}
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=BGSAVE.js.map
|
||||
Reference in New Issue
Block a user