使用缓存的目的是为了使用的应用程序能更快速的响应用户输入,是程序高效的运行。有时候我们需要将远程web服务器获取的数据缓存起来,减少对同一个url多次请求。
内存缓存我们可以使用sdk中的NSURLCache类。NSURLRequest需要一个缓存参数来说明它请求的url何如缓存数据的,我们先看下它的CachePolicy类型。
1、NSURLRequestUseProtocolC
2、NSURLRequestReloadIgnori
3、NSURLRequestReturnCacheD
4、NSURLRequestReturnCacheD
5、NSURLRequestReloadIgnori
6、NSURLRequestReloadReval
NSURLCache还提供了很多方法,来方便我们实现应用程序的缓存机制。下面我通过一个例子来说明,这个例子减少我们对同一个url多次请求。看下面代码:
-(IBAction) buttonPress:(id) sender { NSString *paramURLAsString= @"http://www.baidu.com/"; if ([paramURLAsString length] == 0){ NSLog(@"Nil or empty URL is given"); return; } NSURLCache *urlCache = [NSURLCache sharedURLCache]; [urlCache setMemoryCapacity:1*1024*1024]; //创建一个nsurl NSURL *url = [NSURL URLWithString:paramURLAsString]; //创建一个请求 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0f]; //从请求中获取缓存输出 NSCachedURLResponse *response = [urlCache cachedResponseForRequest:request]; //判断是否有缓存 if (response != nil){ NSLog(@"如果有缓存输出,从缓存中获取数据"); [request setCachePolicy:NSURLRequestReturnCacheDataDontLoad]; } self.connection = nil; NSURLConnection *newConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES]; self.connection = newConnection; [newConnection release]; }
这个例子中,我们请求url为http://www.baidu.com/的网站。如果这个url被缓存了,我们直接从缓存中获取数据,否则从http://www.baidu.com/站点上重新获取数据。我们设置了缓存大小为1M。
使用下面代码,我将请求的过程打印出来:
- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{ NSLog(@"将接收输出"); } - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse{ NSLog(@"即将发送请求"); return(request); } - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{ NSLog(@"接受数据"); NSLog(@"数据长度为 = %lu", (unsigned long)[data length]); } - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse{ NSLog(@"将缓存输出"); return(cachedResponse); } - (void)connectionDidFinishLoading:(NSURLConnection *)connection{ NSLog(@"请求完成"); } - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{ NSLog(@"请求失败"); }
当我们第一次点击界面上的按钮,打印的结果如下:
2014-01-24 14:47:17.347 Test[6072:60b] 即将发送请求 2014-01-24 14:47:17.494 Test[6072:60b] 将接收输出 2014-01-24 14:47:17.495 Test[6072:60b] 接受数据 2014-01-24 14:47:17.496 Test[6072:60b] 数据长度为 = 2874 2014-01-24 14:47:17.512 Test[6072:60b] 接受数据 2014-01-24 14:47:17.514 Test[6072:60b] 数据长度为 = 4323 2014-01-24 14:47:17.515 Test[6072:60b] 接受数据 2014-01-24 14:47:17.516 Test[6072:60b] 数据长度为 = 2877 2014-01-24 14:47:17.528 Test[6072:60b] 接受数据 2014-01-24 14:47:17.529 Test[6072:60b] 数据长度为 = 1440 2014-01-24 14:47:17.535 Test[6072:60b] 接受数据 2014-01-24 14:47:17.536 Test[6072:60b] 数据长度为 = 2880 2014-01-24 14:47:17.810 Test[6072:60b] 接受数据 2014-01-24 14:47:17.811 Test[6072:60b] 数据长度为 = 1330 2014-01-24 14:47:17.812 Test[6072:60b] 将缓存输出 2014-01-24 14:47:17.813 Test[6072:60b] 请求完成
在看我们第二次点击界面上的按钮,打印结果如下:
2014-01-24 14:48:02.084 Test[6072:60b] 如果有缓存输出,从缓存中获取数据 2014-01-24 14:48:02.088 Test[6072:60b] 即将发送请求 2014-01-24 14:48:02.090 Test[6072:60b] 将接收输出 2014-01-24 14:48:02.090 Test[6072:60b] 接受数据 2014-01-24 14:48:02.091 Test[6072:60b] 数据长度为 = 15724 2014-01-24 14:48:02.092 Test[6072:60b] 请求完成
我们看到没有“将缓存输出”一项,请求到的数据是第一次请求的累积,也就是第二次是从内存中获取数据的。