Core.php 420 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Heanup\Config\Redis;
  3. use Heanup\Frame\Config;
  4. class Core extends Config
  5. {
  6. protected static $data = [
  7. "master" => [
  8. "host" => "redis",
  9. "port" => "6379",
  10. "timeout" => 3
  11. ],
  12. "slave_list" => [
  13. [
  14. "host" => "redis",
  15. "port" => "6379",
  16. "timeout" => 3
  17. ]
  18. ]
  19. ];
  20. }