Laravel – Queue’ parameter
Redis
In your
retry_afterconfig/queue.phpconfiguration file, each queue connection defines aretry_afteroption. 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_afteris 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_aftervalue to the maximum number of seconds your jobs should reasonably take to complete processing.
