25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
828 B

  1. <?php
  2. return array(
  3. //请将以下配置拷贝到 ./Config/app.php 文件中
  4. /**
  5. * 计划任务配置
  6. */
  7. 'Task' => array(
  8. //MQ队列设置,可根据使用需要配置
  9. 'mq' => array(
  10. 'file' => array(
  11. 'path' => API_ROOT . '/Runtime',
  12. 'prefix' => 'phalapi_task',
  13. ),
  14. 'redis' => array(
  15. 'host' => '127.0.0.1',
  16. 'port' => 6379,
  17. 'prefix' => 'phalapi_task',
  18. 'auth' => '',
  19. ),
  20. ),
  21. //Runner设置,如果使用远程调度方式,请加此配置
  22. 'runner' => array(
  23. 'remote' => array(
  24. 'host' => 'http://library.phalapi.net/demo/',
  25. 'timeoutMS' => 3000,
  26. ),
  27. ),
  28. ),
  29. );