queue.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. 'default' => 'redis',
  13. 'connections' => [
  14. 'sync' => [
  15. 'type' => 'sync',
  16. ],
  17. 'database' => [
  18. 'type' => 'database',
  19. 'queue' => 'default',
  20. 'table' => 'jobs',
  21. 'connection' => null,
  22. ],
  23. 'redis' => [
  24. 'type' => 'redis',
  25. "expire" => null,//任务过期时间默认为秒,禁用为null
  26. 'queue' => env('queue.queue'),
  27. 'host' => env('cache.host','127.0.0.1'),
  28. 'port' => env('cache.port','6379'),
  29. 'password' => env('cache.password',''),
  30. 'select' => env('cache.select',0),
  31. 'timeout' => env('queue.timeout'),
  32. 'persistent' => false,
  33. ],
  34. ],
  35. 'failed' => [
  36. 'type' => 'none',
  37. 'table' => 'failed_jobs',
  38. ],
  39. ];