不知道为啥 我配置了 redis 的 直接就触发了 没有添加到 mysql 的jobs 表里面 redis 里面 也没有
···
···
class TestJob2 implements ShouldQueue
{
use InteractsWithQueue, Queueable, SerializesModels;
public $num;
/**
Create a new job instance.
*
@return void
*/
public function __construct($num)
{
$this->num = $num;
}
/**
Execute the job.
*
@return void
*/
public function handle()
{
//
}
}
···
dispatch(new TestJob2(1));
dispatch(new TestJob2(2));
···