12345678910111213141516 |
- <?php
- //memcache 自动销毁时间(秒)默认1周:1*7*24*3600
- define("MEM_EXPIRES", 604800);
- //memcache 是否压缩存储
- define("COMPRESSED", false);
- $_ONU_CONFIG['_memcache_conf'] = array (
- "server" => '127.0.0.1',
- "port" => 11211,
- "per" => true,
- "weight" => 1,
- "timeout" => 1,
- "retry" => 5,
- );
|