tp5.1框架 think-queue 队列
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

queue.php 925B

123456789101112131415161718
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: yunwuxin <448901948@qq.com>
  10. // +----------------------------------------------------------------------
  11. return [
  12. 'connector' => 'Database', // 数据库驱动
  13. 'expire' => 60, // 任务的过期时间,默认为60秒; 若要禁用,则设置为 null
  14. 'default' => 'default', // 默认的队列名称
  15. 'table' => 'jobs', // 存储消息的表名,不带前缀
  16. 'dsn' => [],
  17. ];