时间:2021-07-01 10:21:17 帮助过:13人阅读
public function handle()
{
$res1 = DB::table('log')->insertGetId(
['op' => 1]
);
}
就是插入一条数据嘛。
在控制器中调用
class IndexController extends Controller
{
public function register() {
$this->dispatch((new ProcessRegister(1))->onQueue('register'));
echo "下单成功!";
}
}
Redis服务已经开启了,访问http://localhost/test后,发现数据库什么数据也没有。。。
用命令开启了监听了:php artisan queue:listen
这是我job类中的handle方法
public function handle()
{
$res1 = DB::table('log')->insertGetId(
['op' => 1]
);
}
就是插入一条数据嘛。
在控制器中调用
class IndexController extends Controller
{
public function register() {
$this->dispatch((new ProcessRegister(1))->onQueue('register'));
echo "下单成功!";
}
}
Redis服务已经开启了,访问http://localhost/test后,发现数据库什么数据也没有。。。
加了专门的群解决了,应该用php artisan queue:listen --queue=register
--queue这个监听具体的队列
建议还是别用
->onQueue('register'))
,然后
php artisan queue:listen
也不加 --queue
本来就没几个要后台执行的任务,没必要命名,而且万一拼错单词,那就又创造一个诡异的bug。