ASIDownloadCache 设置下载缓存

ASIDownloadCache 设置下载缓存


它对Get请求的响应数据进行缓存(被缓存的数据必需是成功的200请求):


[ASIHTTPRequest setDefaultCache:[ASIDownloadCache sharedCache]];//类方法调用  所有的请求都会被自动缓存

当设置缓存策略后,所有的请求都被自动的缓存起来。


另外,如果仅仅希望某次请求使用缓存操作,也可以这样使用:


ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

[request setDownloadCache:[ASIDownloadCache sharedCache]];//实例方法调用  只有实例方法的请求会被缓存


缓存存储方式

你可以设置缓存的数据需要保存多长时间,ASIHTTPRequest提供了两种策略:


aASICacheForSessionDurationCacheStoragePolicy,默认策略,基于session的缓存数据存储。当下次运行或[ASIHTTPRequest clearSession]时,缓存将失效。


bASICachePermanentlyCacheStoragePolicy,把缓存数据永久保存在本地,

如:


ASIHTTPRequest *request = [ ASIHTTPRequest requestWithURL:url ];

[ request setCacheStoragePolicy:ASICachePermanentlyCacheStoragePolicy ];



你可能感兴趣的:(ASIDownloadCache 设置下载缓存)