2

如何强制 Firefox 不缓存响应?我们尝试过:

response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
response.setHeader("Pragma", "no-cache"); // HTTP 1.0.
response.setDateHeader("Expires", 0); // Proxies.

但在 about:cache 我们仍然看到:

Cache entry information
key:    http://myhost.my.domain.com:42133/ducc-servlet/timestamp
fetch count:    4
last fetched:    2013-03-04 09:21:40
last modified:    2013-03-04 09:12:53
expires:    1969-12-31 19:00:00
Data size:    24
file on disk:    none
Security:    This document does not have any security info associated with it.
Client:    HTTP
request-method:    GET
response-head:    HTTP/1.1 200 OK Content-Type: text/html;charset=UTF-8 Cache-Control: no-cache, no-store, must-revalidate 
Date: Sun, 03 Mar 2013 14:12:57 GMT 
Expires: Sun, 03 Mar 2013 14:12:57 GMT 
Content-Length: 24 
Server: Jetty(7.4.4.v20110707)

00000000:  32  30  31  33  2e  30  33  2e  30  34  20  30  39  3a  31  32  2013.03.04 09:12
00000010:  3a  35  36  20  4d  6f  6e  0a                                  :56 Mon.

谢谢。

娄。

4

1 回答 1

1

Firefox 将始终(除非空间不足)将数据存储在其缓存中,以便它可以通过从缓存中提取数据来执行查看源代码、另存为等操作。当然,如果数据设置为“无缓存”,它可能不会将其用于正常的页面加载。

如果数据是无存储的,它将按照请求将缓存条目放在内存中,而不是磁盘上。

于 2013-03-05T04:25:39.313 回答