config_mc.php 343 B

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