| 1234567891011121314151617181920212223 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.getJobScheduler = void 0;
- const content = `--[[
- Get job scheduler record.
- Input:
- KEYS[1] 'repeat' key
- ARGV[1] id
- ]]
- local rcall = redis.call
- local jobSchedulerKey = KEYS[1] .. ":" .. ARGV[1]
- local score = rcall("ZSCORE", KEYS[1], ARGV[1])
- if score then
- return {rcall("HGETALL", jobSchedulerKey), score} -- get job data
- end
- return {nil, nil}
- `;
- exports.getJobScheduler = {
- name: 'getJobScheduler',
- content,
- keys: 1,
- };
- //# sourceMappingURL=getJobScheduler-1.js.map
|