isMaxed-2.lua 252 B

1234567891011121314151617
  1. --[[
  2. Checks if queue is maxed.
  3. Input:
  4. KEYS[1] meta key
  5. KEYS[2] active key
  6. Output:
  7. 1 if element found in the list.
  8. ]]
  9. local rcall = redis.call
  10. -- Includes
  11. --- @include "includes/isQueueMaxed"
  12. return isQueueMaxed(KEYS[1], KEYS[2])