queue.php 1.1 KB
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------

return [
    'connector' => 'redis',         // 队列驱动使用 redis 推荐, 可选 database 不推荐
	'host' => '192.168.0.155',          // redis 主机地址
	'password' => 'jswdwsx888!',             // redis 密码
	'port' => 6379,                     // redis 端口
	'select' => 6,                   // redis db 库, 建议显示指定 1-15 的数字均可,如果缓存驱动是 redis,避免和缓存驱动 select 冲突
	'timeout' => 0,                     // redis 超时时间
	'persistent' => false,              // redis 持续性,连接复用
];