Mysql
 sql >> Database >  >> RDS >> Mysql

Lavoro ripetibile per Laravel json api

puoi in AfterInsertJob->gestire, in esecuzione, creare una nuova coda:

$need_to_work = true;
.....

if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}