laravel 队列的使用

https://www.cnblogs.com/liaohui5/p/10581638.html  

https://blog.csdn.net/guoguicheng1314/article/details/81132315

Laravel速查表

https://learnku.com/docs/laravel-cheatsheet/8.x
https://blog.csdn.net/guoguicheng1314/article/details/81132315

运行消费队列 的时候

php artisan queue:listen

老报错 说什么确定安装redis扩展了吗。后来在phpstudy里面 跑了下phpinfo确实是有扩展,很奇怪。

最后发现是环境变量里设置的php path不是指向 phpstudy里的php的,而是之前安装的wampserver里的,那里没安装redis扩展

cmd 下执行php -m 发现没有redis扩展,但是phpinfo()里却有,很奇怪,原来环境变量里指向的不是phpstudy里的php。

原文地址:https://www.cnblogs.com/as3lib/p/14454613.html