码迷,mamicode.com
首页 > 其他好文 > 详细

提高squid缓存的命中率

时间:2015-01-12 19:34:18      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:提高squid缓存的命中率

 安装运行squid后用命令

squidclient -t 1 -h localhost -p 80 mgr:info 查看命中率情况

 

Request Hit Ratios:     5min: 99.6%, 60min: 98.7%    Cache Request命中率

 Byte Hit Ratios:        5min: 100.0%, 60min: 100.0%    Cache Byte命中率

 

如果命中率低 则

1  apache中的模块 mod_expires是否打开

 

2  调整squid中的参数

# cache_mem 8 MB
cache_mem 64 MB

# maximum_object_size 4096 KB
maximum_object_size 16384 KB

# maximum_object_size_in_memory 8 KB
maximum_object_size_in_memory 256 KB

# ipcache_size 1024
ipcache_size 2048

#Default:
cache_dir ufs /usr/local/squid/cache 2048 32 512
3  如果apache中使用了deflate压缩
   设置   cache_vary on
4 如果用nginx 可以用第三方模块mod_urlhash 提高命中率


本文出自 “smile_青春” 博客,请务必保留此出处http://smileyouth.blog.51cto.com/7273768/1602504

提高squid缓存的命中率

标签:提高squid缓存的命中率

原文地址:http://smileyouth.blog.51cto.com/7273768/1602504

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!