首页 > C风格编程语言 > Objective-c > iOS开发之内存缓存机制
2012
02-21

iOS开发之内存缓存机制

使用缓存的目的是为了使用的应用程序能更快速的响应用户输入,是程序高效的运行。有时候我们需要将远程web服务器获取的数据缓存起来,减少对同一个url多次请求。

内存缓存我们可以使用sdk中的NSURLCache类。NSURLRequest需要一个缓存参数来说明它请求的url何如缓存数据的,我们先看下它的CachePolicy类型。

1、NSURLRequestUseProtocolCachePolicy NSURLRequest默认的cache policy,使用Protocol协议定义。

2、NSURLRequestReloadIgnoringCacheData 忽略缓存直接从原始地址下载。

3、NSURLRequestReturnCacheDataElseLoad 只有在cache中不存在data时才从原始地址下载。

4、NSURLRequestReturnCacheDataDontLoad 只使用cache数据,如果不存在cache,请求失败;用于没有建立网络连接离线模式;

5、NSURLRequestReloadIgnoringLocalAndRemoteCacheData:忽略本地和远程的缓存数据,直接从原始地址下载,与NSURLRequestReloadIgnoringCacheData类似。

6、NSURLRequestReloadRevalidatingCacheData:验证本地数据与远程数据是否相同,如果不同则下载远程数据,否则使用本地数据。

NSURLCache还提供了很多方法,来方便我们实现应用程序的缓存机制。下面我通过一个例子来说明,这个例子减少我们对同一个url多次请求。看下面代码:

  1. -(IBAction) buttonPress:(id) sender  
  2. {  
  3.     NSString *paramURLAsString= @"http://www.baidu.com/";  
  4.     if ([paramURLAsString length] == 0){  
  5.         NSLog(@"Nil or empty URL is given");  
  6.         return;  
  7.     }  
  8.     NSURLCache *urlCache = [NSURLCache sharedURLCache];  
  9.     /* 设置缓存的大小为1M*/ 
  10.     [urlCache setMemoryCapacity:1*1024*1024];  
  11.      //创建一个nsurl  
  12.     NSURL *url = [NSURL URLWithString:paramURLAsString];  
  13.         //创建一个请求  
  14.     NSMutableURLRequest *request =  
  15.     [NSMutableURLRequest 
  16.      requestWithURL:url  
  17.      cachePolicy:NSURLRequestUseProtocolCachePolicy 
  18.      timeoutInterval:60.0f];  
  19.      //从请求中获取缓存输出  
  20.     NSCachedURLResponse *response =  
  21.     [urlCache cachedResponseForRequest:request];  
  22.     //判断是否有缓存  
  23.     if (response != nil){  
  24.         NSLog(@"如果有缓存输出,从缓存中获取数据");  
  25.         [request setCachePolicy:NSURLRequestReturnCacheDataDontLoad];  
  26.     }  
  27.     self.connection = nil;  
  28.     /* 创建NSURLConnection*/ 
  29.     NSURLConnection *newConnection =  
  30.     [[NSURLConnection alloc] initWithRequest:request  
  31.                                     delegate:self 
  32.                             startImmediately:YES];  
  33.     self.connection = newConnection;  
  34.     [newConnection release];  

这个例子中,我们请求url为www.baidu.com的网站。如果这个url被缓存了,我们直接从缓存中获取数据,否则从www.baidu.com站点上重新获取数据。我们设置了缓存大小为1M。

使用下面代码,我将请求的过程打印出来:

  1. - (void)  connection:(NSURLConnection *)connection     
  2.   didReceiveResponse:(NSURLResponse *)response{     
  3.     NSLog(@"将接收输出");     
  4. }     
  5. - (NSURLRequest *)connection:(NSURLConnection *)connection     
  6.              willSendRequest:(NSURLRequest *)request     
  7.             redirectResponse:(NSURLResponse *)redirectResponse{     
  8.     NSLog(@"即将发送请求");     
  9.     return(request);     
  10. }     
  11. - (void)connection:(NSURLConnection *)connection     
  12.     didReceiveData:(NSData *)data{     
  13.     NSLog(@"接受数据");     
  14.     NSLog(@"数据长度为 = %lu", (unsigned long)[data length]);     
  15. }     
  16. - (NSCachedURLResponse *)connection:(NSURLConnection *)connection     
  17.                   willCacheResponse:(NSCachedURLResponse *)cachedResponse{     
  18.     NSLog(@"将缓存输出");     
  19.     return(cachedResponse);     
  20. }     
  21. - (void)connectionDidFinishLoading:(NSURLConnection *)connection{     
  22.     NSLog(@"请求完成");     
  23. }     
  24. - (void)connection:(NSURLConnection *)connection     
  25.   didFailWithError:(NSError *)error{     
  26.     NSLog(@"请求失败");     
  27. }    

当我们第一次点击界面上的按钮,打印的结果如下:

  1. 2011-07-30 18:50:24.910 Caching[3971:207] 即将发送请求     
  2. 2011-07-30 18:50:28.557 Caching[3971:207] 将接收输出     
  3. 2011-07-30 18:50:31.677 Caching[3971:207] 接受数据     
  4. 2011-07-30 18:50:31.681 Caching[3971:207] 数据长度为 = 4414     
  5. 2011-07-30 18:50:31.682 Caching[3971:207] 接受数据     
  6. 2011-07-30 18:50:31.682 Caching[3971:207] 数据长度为 = 2996     
  7. 2011-07-30 18:50:38.107 Caching[3971:207] 将缓存输出     
  8. 2011-07-30 18:50:38.109 Caching[3971:207] 请求完成    

在看我们第二次点击界面上的按钮,打印结果如下:

  1. 2011-07-30 18:52:18.894 Caching[3971:207] 即将发送请求 
  2. 2011-07-30 18:52:18.895 Caching[3971:207] 将接收输出 
  3. 2011-07-30 18:52:18.895 Caching[3971:207] 接受数据 
  4. 2011-07-30 18:52:18.896 Caching[3971:207] 数据长度为 = 7410 
  5. 2011-07-30 18:52:18.896 Caching[3971:207] 请求完成 

我们看到没有“将缓存输出”一项,请求到的数据是第一次请求的累积,也就是第二次是从内存中获取数据的。


留下一个回复