redis.php 427 B

12345678910111213
  1. <?php
  2. return [
  3. 'default' => [
  4. 'host' => 'redis://127.0.0.1:6379',
  5. 'options' => [
  6. 'auth' => '', // 密码,字符串类型,可选参数
  7. 'db' => 11, // 数据库
  8. 'prefix' => 'queue', // key 前缀
  9. 'max_attempts' => 5, // 消费失败后,重试次数
  10. 'retry_seconds' => 5, // 重试间隔,单位秒
  11. ]
  12. ],
  13. ];