| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Heanup\Config\Redis;
- use Heanup\Frame\Config;
- /**
- * 默认Redis配置
- */
- class Proxy extends Config
- {
- protected static $data = [
- "master" => [
- "host" => "www.97admin.com",
- "port" => "63790",
- "db" => 3,
- "timeout" => 3
- ],
- "slave_list" => [
- [
- "host" => "www.97admin.com",
- "port" => "63790",
- "db" => 3,
- "timeout" => 3
- ]
- ]
- ];
- }
|