Redis
In your
retry_afterconfig/queue.php
configuration file, each queue connection defines aretry_after
option. This option specifies how many seconds the queue connection should wait before retrying a job that is being processed. For example, if the value ofretry_after
is set to90
, the job will be released back onto the queue if it has been processing for 90 seconds without being released or deleted. Typically, you should set theretry_after
value to the maximum number of seconds your jobs should reasonably take to complete processing.