免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4629 | 回复: 6
打印 上一主题 下一主题

[proxy] squid cache, curl -i return x-cache: miss [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-05-19 15:14 |只看该作者 |倒序浏览
[root@nemowap2 root]# curl -I www.abc.cn
HTTP/1.0 200 OK
Date: Mon, 19 May 2008 07:41:03 GMT
Server: Apache
Last-Modified: Fri, 16 May 2008 09:25:56 GMT
ETag: "59014c-1927-99e01100"
Accept-Ranges: bytes
Content-Length: 6439
Vary: Accept-Encoding
Content-Type: text ml; charset=GB2312
Content-Language: GB2312
X-Cache: MISS from www.abc.cn
Via: 1.0 www.abc.cn:80 (squid/2.6.STABLE13)
Connection: close

怎么是MISS,不是hit。
这里也看不到expiress,cache-control

apache vhost 设置
<VirtualHost *:81>
    ServerAdmin admin@abc.cn
    DocumentRoot /opt/
    ServerName www.abc.cn
    ErrorLog logs/abc.cn-error_log
    CustomLog "|/usr/local/sbin/cronolog /var/log/httpd/abc.cn.%Y%m%d" common
    <Directory "/opt/html/tt">
    Options FollowSymLinks
    AllowOverride FileInfo
    </Directory>
   ScriptAlias /cgi-bin/ "/opt/cgi-bin/"
   <Directory "/opt/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
   </Directory>
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from all
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/gif "access plus 1 month"
ExpiresByType text/css "now plus 2 day"
ExpiresDefault "now plus 1 day"
</IfModule>
</Location>

squid 和 apache  在同一台服务器上

[ 本帖最后由 webyuhang 于 2008-5-19 15:23 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-05-19 15:47 |只看该作者
oot@abc ~]# wget -S --spider www.abc.cn
--15:43:04--  http://www.abc.cn/
           => `index.html'
正在解析主机 www.abc.cn... 210.82.11.11
Connecting to www.abc.cn|210.82.11.11|:80... 已连接。
已发出 HTTP 请求,正在等待回应...
  HTTP/1.0 200 OK
  Date: Mon, 19 May 2008 07:42:37 GMT
  Server: Apache/2.0.52 (CentOS)
  Last-Modified: Tue, 11 Dec 2007 05:19:28 GMT
  ETag: "e-f8-db5b3800"
  Accept-Ranges: bytes
  Content-Length: 248
  Content-Type: text/html; charset=UTF-8
  X-Pad: avoid browser bug
  Age: 27
  X-Cache: HIT from www.runabc.cn
  Via: 1.0 www.runabc.cn:80 (squid/2.6.STABLE17)
  Connection: keep-alive
长度:248 [text/html]
200 OK

这个请求时显示的HIT,
curl --help|grep I
-I/--head          Show document info only
这个仅仅是显示http head ,
wget真正请求的时候,确实是HIT了。是不是这个原因呢

论坛徽章:
0
3 [报告]
发表于 2008-05-19 15:49 |只看该作者
[root@abc ~]# wget -S --spider www.sohu.com
--15:47:51--  http://www.sohu.com/
           => `index.html'
正在解析主机 www.sohu.com... 61.135.179.166, 61.135.179.184, 61.135.179.190, ...
Connecting to www.sohu.com|61.135.179.166|:80... 已连接。
已发出 HTTP 请求,正在等待回应...
  HTTP/1.0 200 OK
  Date: Mon, 19 May 2008 07:44:25 GMT
  Server: Apache/1.3.37 (Unix) mod_gzip/1.3.26.1a
  Vary: Accept-Encoding,X-Up-Calling-Line-id,X-Source-ID,X-Up-Bearer-Type,x-huawei-nasip,x-wap-profile
  Cache-Control: max-age=70
  Expires: Mon, 19 May 2008 07:45:35 GMT
  Last-Modified: Mon, 19 May 2008 07:44:06 GMT
  Content-Type: text/html
  Age: 63
  Content-Length: 190729
  X-Cache: HIT from 20430583.31309620.29323933.sohu.com
  Via: 1.0 20430583.31309620.29323933.sohu.com:80 (squid/2.6.STABLE12)
  Connection: close
长度:190,729 (186K) [text/html]
200 OK

[root@abc ~]# curl -I www.sohu.com
HTTP/1.0 200 OK
Date: Mon, 19 May 2008 07:45:12 GMT
Server: Apache/1.3.37 (Unix) mod_gzip/1.3.26.1a
Vary: Accept-Encoding,X-Up-Calling-Line-id,X-Source-ID,X-Up-Bearer-Type,x-huawei-nasip,x-wap-profile
Cache-Control: max-age=70
Expires: Mon, 19 May 2008 07:46:22 GMT
Last-Modified: Mon, 19 May 2008 07:44:06 GMT
Content-Type: text/html
Age: 25
Content-Length: 190729
X-Cache: HIT from 14665659.19777528.23561209.sohu.com
Via: 1.0 14665659.19777528.23561209.sohu.com:80 (squid)
Connection: clos

可是sohu curl wget都是显示了hit。为什么呢?

论坛徽章:
2
2015年辞旧岁徽章
日期:2015-03-03 16:54:1515-16赛季CBA联赛之上海
日期:2016-05-05 09:45:14
4 [报告]
发表于 2008-05-19 16:22 |只看该作者
用curl的话,,要执行两次之后才被hit的,,和WGET 不一样!

论坛徽章:
0
5 [报告]
发表于 2008-05-19 17:03 |只看该作者
原帖由 badb0y 于 2008-5-19 16:22 发表
用curl的话,,要执行两次之后才被hit的,,和WGET 不一样!

无论执行几次,都是MISS

论坛徽章:
0
6 [报告]
发表于 2008-05-19 17:04 |只看该作者
squid的命中率显示:

Cache information for squid:
        Request Hit Ratios:     5min: 100.0%, 60min: 34.7%
        Byte Hit Ratios:        5min: 97.5%, 60min: -6.4%
        Request Memory Hit Ratios:      5min: 20.0%, 60min: 3.0%
        Request Disk Hit Ratios:        5min: 77.0%, 60min: 22.7%
        Storage Swap size:      19820 KB
        Storage Mem size:       360 KB
        Mean Object Size:       140.57 KB
        Requests given to unlinkd:      5

论坛徽章:
2
2015年辞旧岁徽章
日期:2015-03-03 16:54:1515-16赛季CBA联赛之上海
日期:2016-05-05 09:45:14
7 [报告]
发表于 2008-05-20 08:45 |只看该作者
那可能你的SQUID配置有问题吧!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP