Home  >  Article  >  Backend Development  >  laravel队列

laravel队列

WBOY
WBOYOriginal
2016-06-20 12:33:181607browse

遇到的坑罗列如下:

1、加入队列的程序如何写

这个很多教程都没说明白,其实很简单,就像我们调用类一样,如果有参数,他会一起放到payload字段中去,等待队列去执行,例如:

方式1:用Bus:dispatch

use Illuminate\Support\Facades\Bus;

Bus::dispatch(new \App\Jobs\sendMsg($arr));

方式2:用Queue::push

use Queue;

Queue::push(new \App\Jobs\sendMsg($arr))

至于$arr是啥,就是传入执行任务的数组了。

2、为啥程序立马执行了

大多数教程都说我们修改config/queue.php中的

'default' => env('QUEUE_DRIVER', 'database'),

但是其实还与我们环境有关,万一我们的.env设置的QUEUE_DRIVER是sync肯定就同步执行了,于是我们还需要看看.env的设置,进行到这一步,理论上你可以在queue数据表中看到如下的记录了,也就说说没执行一次push,会往生产中加入一条记录:

{"job":"Illuminate\\Queue\\CallQueuedHandler@call","data":{"command":"O:16:\"App\\Jobs\\sendMsg\":7:{s:22:\"\u0000App\\Jobs\\sendMsg\u0000toid\";s:11:\"13080603915\";s:28:\"\u0000App\\Jobs\\sendMsg\u0000templateid\";s:11:\"SMS_5905289\";s:22:\"\u0000App\\Jobs\\sendMsg\u0000data\";a:3:{s:4:\"code\";i:12544;s:7:\"product\";s:15:\"\u53cc\u521b\u6559\u80b2222\";s:4:\"item\";s:4:\"4545\";}s:10:\"connection\";N;s:5:\"queue\";N;s:5:\"delay\";N;s:6:\"\u0000*\u0000job\";N;}"}}

看到没,参数都带上了吧!

3、如何生成queues跟failed_queues表

php artisan queue:table

php artisan queue:failed-table

执行这两个命令就可以了

4、如何添加队列任务

说的蛮高大上,几乎听不懂,其实也就是添加一个类,通过这个类的handle来执行某些任务,但是这个handle会自动去执行,我们只需要把逻辑写到handle方法体里面就行了。

如下代码会报错,因为command不存在

php artisan make:command SendEmail --queued

正确的方式:

php artisan make:job SendEmail

这样我们就可以看到在App/Jobs生成了SendEmail.php类文件,我们在需要将某东西加入类的时候只用执行:

Queue:push(new \App\Jobs\SendEmail(参数));就可以了。就这么简单。

5、如何监听队列

在windows机子上,我们执行php artisan queue:listen会去监听并去执行队列,如果我们将队列人物保存在数据库中,则会去读queue数据表,如果不执行这个命令,queue表中的记录不会少,执行完之后queue表中的记录就删了。关于记录执行情况问题,这里我们还是放到logs里面去吧!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn