域名 说明 Date 原始服务器产生响应的日期,中间的代理和缓存一定不能修改这个日期 Age 当代理服务器用自己缓存的副本响应请求时,用该头部域表明该副本从产生到现在经过多长时间了。文档经过代理时,Age首部值会随之增加 Expires 指定响应资源的过期日期,表示在这个时间之前都是有效的 Cache-Control 有很多参数,看下面 :max-age=<s> 定义文档的最大使用期 :no-store 资源不能被持久化保存起来(可以放入缓存),只能存在于内存中。用于防止敏感性的数据被复制。 :no-cache 不能被缓存起来。 :must-revalidate 每次在使用副本时,都要和源服务器进行验证确定是否为最新数据。 :private 数据资源只能被存储到私有的caches中,即不能存储在中间缓存服务器中 :public 数据资源可以在任何地方缓存起来 Last-Modified 资源文档最后被修改的日期 Etag 与资源文档关联的一个值,类似于资源文档的MD5值
int freshness_limit () { int heuristic , server_freshness_limit, time_since_last_modified ; heuristic = 0; if (Max_Age_value_set ) { server_freshness_limit = Max_Age_value ; } else if ( Expire_value_set) { server_freshness_limit = Expire_value - Date_value; } else if ( Last_Modified_value_set) { time_since_last_modified = max (0, Date_value - Last_Modified_value); server_freshness_limit = int ( time_since_last_modified* lm_factor ); heuristic = 1; } else { server_freshness_limit = default_cache_min_lifetime ; heuristic = 1; } if (heuristic ) { if (server_freshness_limit > default_cache_max_lifetime) server_freshness_limit = default_cache_max_lifetime ; else if ( server_freshness_limit < default_cache_min_lifetime ) server_freshness_limit = default_cache_min_lifetime ; } return 0; }
如果响应中没有Cache-Control: max-age首部,也没有Expires首部使用,就计算出一个试探性最大使用期。
time_since_modify = max(0, server_Date - server_Last_Modified); server_freshness_limit = int(time_since_modify * lm_factor);
int age ( int time_got_response, int Date_header_value , int Age_header_value) { int time_issued_request , current_time; /* 修正时钟偏差造成的负数使用期 */ int apparent_age = max(0, time_got_response - Date_header_value ); /* 修正时钟偏差,取最保守的值 */ int corrected_apparent_age = max( apparent_age, Age_header_value ); /* 对网络时延的补偿 */ int response_delay_estimate = ( time_got_response - time_issued_request ); int age_when_document_arrived_at_our_cache = corrected_apparent_age + response_delay_estimate ; int how_long_copy_has_been_in_our_cache = current_time - time_got_response ; int age = age_when_document_arrived_at_our_cache + how_long_copy_has_been_in_our_cache ; return age ; }
原文:http://blog.csdn.net/wy5761/article/details/21120185