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