关闭应用程序后不会保留预取的 SDWebImage
Prefetched SDWebImage is not persisted after closing app
我正在使用 SDWebImage 预取,即
SDWebImagePrefetcher
.shared()
.prefetchURLs(
urls as [URL],
progress: nil,
completed: { finished, skipped in
onComplete([finished, skipped])
}
)
一切似乎都很好,所有预期的图像都被缓存并且在我使用我的应用程序时感觉响应迅速。我在获取这些图像时展示了一个加载程序,大约需要 4 - 5 秒才能完成。
我预计下次打开我的应用程序时,此预取将是即时的,因为图像应该已经在缓存中了吗?但是,如果我完全退出我的应用程序(从 iOS 活动应用程序视图等关闭它)然后打开它,我必须再次等待同样的 4 - 5 秒。
我是不是没有理解这个方法的作用,也许还有另一种解决方案符合我的预期?
尝试将缓存类型强制到磁盘,来源:
/**
A SDImageCacheType raw value which specify the cache type when the image has just been downloaded and will be stored to the cache. Specify `SDImageCacheTypeNone` to disable cache storage; `SDImageCacheTypeDisk` to store in disk cache only; `SDImageCacheTypeMemory` to store in memory only. And `SDImageCacheTypeAll` to store in both memory cache and disk cache.
If not provide or the value is invalid, we will use `SDImageCacheTypeAll`. (NSNumber)
*/
SDWebImageContextOption _Nonnull const SDWebImageContextStoreCacheType;
Link 这里:https://github.com/SDWebImage/SDWebImage/blob/5.x/SDWebImage/SDWebImageDefine.h#L204-L208
我正在使用 SDWebImage 预取,即
SDWebImagePrefetcher
.shared()
.prefetchURLs(
urls as [URL],
progress: nil,
completed: { finished, skipped in
onComplete([finished, skipped])
}
)
一切似乎都很好,所有预期的图像都被缓存并且在我使用我的应用程序时感觉响应迅速。我在获取这些图像时展示了一个加载程序,大约需要 4 - 5 秒才能完成。
我预计下次打开我的应用程序时,此预取将是即时的,因为图像应该已经在缓存中了吗?但是,如果我完全退出我的应用程序(从 iOS 活动应用程序视图等关闭它)然后打开它,我必须再次等待同样的 4 - 5 秒。
我是不是没有理解这个方法的作用,也许还有另一种解决方案符合我的预期?
尝试将缓存类型强制到磁盘,来源:
/**
A SDImageCacheType raw value which specify the cache type when the image has just been downloaded and will be stored to the cache. Specify `SDImageCacheTypeNone` to disable cache storage; `SDImageCacheTypeDisk` to store in disk cache only; `SDImageCacheTypeMemory` to store in memory only. And `SDImageCacheTypeAll` to store in both memory cache and disk cache.
If not provide or the value is invalid, we will use `SDImageCacheTypeAll`. (NSNumber)
*/
SDWebImageContextOption _Nonnull const SDWebImageContextStoreCacheType;
Link 这里:https://github.com/SDWebImage/SDWebImage/blob/5.x/SDWebImage/SDWebImageDefine.h#L204-L208