| 1234567891011121314151617181920212223242526 |
- <?php
- namespace Heanup\Config\Redis;
- use Heanup\Frame\Config;
- class Core extends Config
- {
- protected static $data = [
- "master" => [
- "host" => "redis",
- "port" => "6379",
- "timeout" => 3
- ],
- "slave_list" => [
- [
- "host" => "redis",
- "port" => "6379",
- "timeout" => 3
- ]
- ]
- ];
- }
|