对缓存的一点思考

APP 不可避免要与服务器进行交互,为了提高用户体验,缓存是必不可少的。以下是我的一点点想法,望斧正!

分类:

  • 图片缓存
  • 数据缓存
  • 文件缓存

图片缓存

对于图片下载,首选SDWebImage。它的缓存封装的很好,足够满足使用。
一行代码即可:

[[SDImageCache sharedImageCache] storeImage:image                                           forKey:imageName                                                    toDisk:YES];

稍微看下原代码:先把图片存到NSCache,根据‘toDisk:’参数判断是否存到磁盘。‘YES’的话,会把图片存到NSCachesDirectory下面。模拟器下是这样:
.../Library/Caches/default/com.hackemist.SDWebImageCache.default

数据缓存

根据服务端response的cache-control来确定缓存策略。
创建NSMutableURLRequest的时候,不主动指定NSURLRequestCachePolicy,就会自动根据cache-control来缓存。不定义缓存大小,就会用默认的缓存大小。
这样就可以由服务端统一管理,不需要区分android或iOS;更改缓存策略也不需要重新打包、发布。
当然,有些情况可以主动设定NSURLRequestCachePolicy、缓存大小,具体项目具体分析。

文件缓存

小文件等同于数据缓存,可以用NSCache;大文件自己放到NSCachesDirectory下面。
在官方文档上看到,

The Caches directory is where you store cache files and other temporary data that your app can re-create as needed. This directory is located inside the Library directory.
Never store files at the top level of this directory: Always put them in a subdirectory named for your app or company. Your app is responsible for cleaning out cache data files when they are no longer needed. The system does not delete files from this directory.
To get the path to this directory use the NSCachesDirectory search path key with the NSUserDomainMask domain.

要注意不要把文件放到顶级目录下(Never store files at the top level of this directory)。
不过,这个文档说的是MAC的app;iOS找不到资料,不知道是不是这样。。。
我测试了下,放到顶级目录不会崩溃。不过最好不要放吧 ==!
官方文档地址

参考

iOS网络——NSURLCache设置网络请求缓存

NSURLCache Uses a Disk Cache as of iOS 5

The Mac Application Environment

你可能感兴趣的:(对缓存的一点思考)