Projektstart
This commit is contained in:
19
backend/node_modules/bullmq/dist/esm/commands/getJobScheduler-1.lua
generated
vendored
Normal file
19
backend/node_modules/bullmq/dist/esm/commands/getJobScheduler-1.lua
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
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}
|
||||
Reference in New Issue
Block a user