async_queue.php 979 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. use Hyperf\AsyncQueue\Driver\RedisDriver;
  12. return [
  13. 'default' => [
  14. 'driver' => RedisDriver::class,
  15. 'redis' => [
  16. 'pool' => 'default', // redis 连接池
  17. ],
  18. 'channel' => '{queue}', // 队列前缀
  19. 'timeout' => 2, // pop 消息的超时时间
  20. 'retry_seconds' => 5, // 失败后重新尝试间隔
  21. 'handle_timeout' => 10, // 消息处理超时时间
  22. 'processes' => 1, // 消费进程数
  23. 'concurrent' => [
  24. 'limit' => 10, // 同时处理消息数
  25. ],
  26. 'max_messages' => 0, // 进程重启所需最大处理的消息数 默认不重启
  27. ],
  28. ];