Files
simple-mail-cleaner/backend/node_modules/bullmq/dist/esm/commands/includes/getOrSetMaxEvents.lua
2026-01-22 15:49:12 +01:00

12 lines
308 B
Lua

--[[
Function to get max events value or set by default 10000.
]]
local function getOrSetMaxEvents(metaKey)
local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents")
if not maxEvents then
maxEvents = 10000
rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents)
end
return maxEvents
end