日期:2014-05-16 浏览次数:20762 次
#缓存配置 LoadModule cache_module modules/mod_cache.so LoadModule mem_cache_module modules/mod_mem_cache.so <IfModule mod_cache.c> #默认缓存有效期 秒 CacheDefaultExpire 3600 CacheMaxExpire 86400 CacheLastModifiedFactor 0.1 #禁止缓存某些特定的URL #CacheDisable /local_files #使用特定的存储类型缓存某些特定的URL #CacheEnable mem /manual #CacheEnable fd /images #CacheEnable disk / <IfModule mod_mem_cache.c> CacheEnable mem / MCacheSize 8192 MCacheMaxObjectCount 10000 MCacheMinObjectSize 1 MCacheMaxObjectSize 51200 #MCacheRemovalAlgorithm LRU </IfModule> </IfModule>