How to update image in cache when image changed on

2020-02-10 02:48发布

I am using SDWebImage library to download images from server. https://github.com/rs/SDWebImage

SDWebImage not able update the cached image when image updated on server with the same url.

6条回答
混吃等死
2楼-- · 2020-02-10 03:05

Go to the line number 176 in the file SDWebImageManager.m and change this line

if (options & SDWebImageRefreshCached) downloaderOptions |= SDWebImageDownloaderUseNSURLCache;

to below code.

if (options & SDWebImageRefreshCached) {
      // force progressive off if image already cached but forced refreshing
      downloaderOptions &= ~SDWebImageDownloaderProgressiveDownload;
      // remove SDWebImageDownloaderUseNSURLCache flag
      downloaderOptions &= ~SDWebImageDownloaderUseNSURLCache;
      //ignore image read from NSURLCache if image is cached but force refreshing
       downloaderOptions |= SDWebImageDownloaderIgnoreCachedResponse;
}

For me it worked like a charm.

查看更多
爷、活的狠高调
3楼-- · 2020-02-10 03:16

Swift 4 Simply use the following function in the SDWebImage Library :

SDImageCache.shared().removeImage(forKey: (ImagePath), withCompletion: nil)

This function will delete the saved Cash in memory and Disk , after that just Upload your new Image at the same and it will work perfectly.

查看更多
Juvenile、少年°
4楼-- · 2020-02-10 03:20

SDWebImage does some caching by default, so it would be better to use a new URL if the image changes. So, for instance, if you have control over the URL and can change it every time the image has changed, you could do that.

If that's not the case, try using SDWebImageRefreshCached in the options field in order to respect HTTP cache control headers, like this:

[imageView setImageWithURL:[NSURL URLWithString:@"https://graph.facebook.com/olivier.poitrey/picture"]
          placeholderImage:[UIImage imageNamed:@"avatar-placeholder.png"]
                   options:SDWebImageRefreshCached];

See more here

查看更多
乱世女痞
5楼-- · 2020-02-10 03:27

Update: I've actually written an entire guide about cache, including cache validation https://kean.github.io/blog/image-caching

SDWebImage uses NSURLCache when you set SDWebImageRefreshCached option. Apple's URL loading system implements HTTP cache, including cached responses validation. HTTP cache is quite complex, however there are many beginners guides on HTTP caching:

Basically, the server needs to include some of HTTP cache control headers in each response. There are many different strategies that can be used to implement revalidation. You may use either Last-Modified or ETag. This way each time the client sends a request it will automatically include in your request either Last-Modified or ETag value from previously cached response. If the image hasn't change the server will respond with status code 302 (not modified) and NSURLConnection/NSURLSession will transparently give you a cached response from NSURLCache. You don't have to download the data again, buy you still need to check with the server each time you make a request.

You can also specify an expiration date using HTTP cache control. If the expiration mechanism is used, NSURLConnection/NSURLSession will not revalidate cached response until it is not expired.

For more info about HTTP cache control see the links above. HTTP cache is a universal cache mechanism that should be used whenever possible.

I would recommend to use Nuke framework for image loading (disclaimer: writted by me). It uses NSURLCache by default while still having a memory cache that holds decompressed images.

查看更多
Anthone
6楼-- · 2020-02-10 03:27

If URL is not changed there is now way for SDWebImage to know that image has been changed on the server.

查看更多
一夜七次
7楼-- · 2020-02-10 03:28

Here is a code in swift 3 to refresh cache everytime

imgCardBack.sd_setImage(with: URL(string: objUserData.back_image!), placeholderImage:UIImage(named: "cardBack"), options: .refreshCached)
查看更多
登录 后发表回答