79678915

Date: 2025-06-25 10:56:49
Score: 1
Natty:
Report link

SolidQueue has concurrency controls now: https://github.com/rails/solid_queue/?tab=readme-ov-file#concurrency-controls

class ContinuousSearchJob < ApplicationJob
  limits_concurrency key: :ContinuousSearchJob

  # ...

Then only one instance of this job will be able to run at once. If another attempts to start, it is discarded.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Shane