gpt4 book ai didi

ios - NSURLCache,连同 NSURLSession,不尊重 : Cache-Control: max-age:86000, private,must-revalidate

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:15:22 39 4
gpt4 key购买 nike

在 AppDelegate.m 中,我配置了:

NSURLCache *sharedURLCache = [[NSURLCache alloc] initWithMemoryCapacity:20 * 1024 * 1024 diskCapacity:100 * 1024 * 1024 diskPath:@"FhtHttpCacheDir"];

然后是http请求:

- (void) testRestfulAPI{
NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];
NSURLSession *session = [NSURLSession sessionWithConfiguration:config];

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://192.168.0.223:8000/v1/topictypes"]];

[request setHTTPMethod:@"GET"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];

NSError *error = nil;
if (!error) {
NSURLSessionDataTask *downloadTask = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (!error) {
NSHTTPURLResponse *httpResp = (NSHTTPURLResponse*) response;
if (httpResp.statusCode == 200) {
NSDictionary* json = [NSJSONSerialization
JSONObjectWithData:data
options:kNilOptions
error:&error];
NSLog(@"JSON: %@", json);
}
}
}];
[downloadTask resume];
}
}

第一次请求时,它获得了带有 Etag + Cache-Control header 的 HTTP 200。没问题。

enter image description here

如果我没记错的话,Cache-Control: must-revalidate, max-age=86400, private 会告诉 NSURLCache 认为缓存在 24 小时内是新鲜的并且不会建立任何网络在接下来的 24 小时内调用。

但事实并非如此,第二次发起http请求时,它实际上发出了If-None-Match header ,并返回了HTTP 304。

enter image description here

在我看来 NSURLCache 部分工作。它可以缓存响应,但它不遵守 Apple 文档描述的 RFC 2616 语义 here .仅供引用,我没有更改缓存策略,因此它使用默认的 NSURLRequestUseProtocolCachePolicy

我在谷歌上搜索了一天多的类似问题和其他经历过的类似问题,但我没有找到任何解决方案。有些人在 AFNetworking 的 github 问题中询问了同样的问题,但作者关闭了这个问题,因为它与 AFNetworking 没有直接关系 herehere .

还有各种相关的 stackoverflow 帖子也没有帮助我。

最佳答案

问题

问题是 Cache-Control 响应指令 must-revalidate 的使用。

根据我的理解,通过省略 must-revalidate,您已经对您的用例有了完美的定义:

Cache-Control: max-age=86400, private

这控制请求的资源被认为是新鲜的时间。这段时间过去后,答案不应再直接来自缓存,而应联系服务器以验证后续请求。在您的情况下,由于服务器提供了 ETag,iOS 会向服务器发送带有 If-None-Match header 的请求。

验证

为了检查这一点,我使用了您的没有 NSURLCache 设置的 testRestfulAPI 方法,并在服务器端配置了 60 秒的最大时限,所以我不必等一天就可以检查结果。

之后,我每秒触发一次 testRestfulAPI。我总是从缓存中得到想要的结果。并且 Charles 表明数据必须来自缓存,因为服务器在 60 秒内没有联系。

Verification using Charles

RFC 7234

这是 RFC 7234(废弃 RFC 2616)中 5.2.2.1 的引述。它指出:

The must-revalidate directive is necessary to support reliableoperation for certain protocol features. In all circumstances a cacheMUST obey the must-revalidate directive; in particular, if a cachecannot reach the origin server for any reason, it MUST generate a 504(Gateway Timeout) response.

The must-revalidate directive ought to be used by servers if and onlyif failure to validate a request on the representation could result inincorrect operation, such as a silently unexecuted financialtransaction.

读完之后,如果您将自己置于缓存开发人员的视角,您可以很好地想象当看到 must-revalidate 时,始终会联系原始服务器,并且会简单地忽略任何附加指令,例如 max-age .在我看来,缓存在实践中经常表现出这种行为。

章节 5.2.2.1 中还有另一节。我不会隐瞒,内容如下:

The "must-revalidate" response directive indicates that once it has become stale, a cache MUST NOT use the response to satisfy subsequent requests without successful validation on the origin server.

这通常被解释为通过指定 max-age 和 must-revalidate,您可以确定内容何时过时(在 max-age 秒之后),然后它必须在源服务器上验证才能提供内容。

然而,在实践中,由于上述原因,似乎 must-revalidate 总是导致对源服务器上的每个请求进行验证。

关于ios - NSURLCache,连同 NSURLSession,不尊重 : Cache-Control: max-age:86000, private,must-revalidate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51778155/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com