homepagePHP/docs/Resque.md

30 lines
852 B
Markdown
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 消息队列
#### 用法
##### 添加队列
##### 添加计划任务
##### 执行队列
```blade
环境变量参数值:
--queue|QUEUE: 需要执行的队列的名字
--interval|INTERVAL在队列中循环的间隔时间即完成一个任务后的等待时间默认是5秒
--app|APP_INCLUDE需要自动载入PHP文件路径Worker需要知道你的Job的位置并载入Job
--count|COUNT需要创建的Worker的数量。所有的Worker都具有相同的属性。默认是创建1个Worker
--debug|VVERBOSE设置“1”启用更啰嗦模式会输出详细的调试信息
--log|LOGGING设置"1",输出调试信息
```
```php
php 框架源码根目录/app/resque start --queue=default
```
##### 安全停止队列
```blade
当前任务执行完后再停止队列
```
```php
php 框架源码根目录/app/resque stop
```