queue.php 925 B

1234567891011121314151617181920212223
  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' => 'Sync',
  13. 'connector' => 'redis',
  14. 'expire' => null,
  15. 'default' => 'default',
  16. 'host' => '127.0.0.1',
  17. 'port' => 6379,
  18. 'password' => 'Z159357p',
  19. 'select' => 10,
  20. 'timeout' => 0,
  21. 'persistent' => false
  22. ];