我想從NSURLCache中獲取以前緩存的信息。使用此代碼:NSURLCache cachedResponseForRequest不檢索緩存的數據
NSString *theCompleteURL = @"http://192.168.1.2:8080/api/endpoint.json";
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:theCompleteURL]];
NSCachedURLResponse *response = [[NSURLCache sharedURLCache] cachedResponseForRequest:request];
if (response) {
NSLog(@"Cached data found");
}
else {
NSLog(@"Cached data not found");
}
但我始終得到零作爲響應爲來自方法cachedResponseForRequest的「響應」變量。
我相信有關的數據緩存裏面,因爲我在我的應用程序的Cache.db文件檢查的話,從cfurl_cache_response表得到這樣的結果:
sqlite> select * from cfurl_cache_response;
1|0|1875686237|0|http://192.168.1.2:8080/api/endpoint.json|2014-01-09 11:55:17|
sqlite>
在ApplicationDelegate的NSURLCache配置作爲:
NSURLCache *cache = [[NSURLCache alloc] initWithMemoryCapacity:5 * 1024 * 1024
diskCapacity:40 * 1024 * 1024
diskPath:nil];
[NSURLCache setSharedURLCache:cache];
任何關於什麼可以與緩存進行的想法嗎?
我的端點的標題是這樣的:
$ curl -I http://192.168.1.2:8080/api/endpoint.json
HTTP/1.1 200 OK
Content-Length: 1385
Expires: Thu, 01 Dec 2020 16
00: 00 GMT
Content-Type: application/json;charset=utf-8
ETag: "3e86-410-3596fbbc"
Cache-Control: max-age=3600
Connection: keep-alive
Server: thin 1.5.1 codename Straight Razor
$
請發表回覆標題。請發佈數據應放在緩存中的代碼 – danh
編輯添加標題 –
你能解決這個問題嗎? – estemendoza