什么是iOS应用程序Cache.db在库缓存路径中的用途?

前端之家收集整理的这篇文章主要介绍了什么是iOS应用程序Cache.db在库缓存路径中的用途?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在iOS模拟器中发现,在库缓存路径中有一个名为Cache.db的文件.

db中有一些表:

sqlite3 Cache.db 
sqlite version 3.7.5
Enter ".help" for instructions
Enter sql statements terminated with a ";"
sqlite> .table
cfurl_cache_blob_data       cfurl_cache_response      
cfurl_cache_receiver_data   cfurl_cache_schema_version

我想知道这是做什么的?而且我们如何利用这个数据库

解决方法

这是由 NSURLCache使用的.当您创建 NSURLRequest时,它将自动使用,除非您指定不想使用缓存.
原文链接:https://www.f2er.com/iOS/329718.html

猜你在找的iOS相关文章