Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Glide : How to find if the image is already cached and use the cached version?

Scenario:

I have a large GIF image which I want to cache the first time user opens the app using Glide - Image Loading and Caching library. After that whenever user opens the app, I want to show the cached version if present. This GIF URL will expire after a given interval. When it expires, I fetch the new GIF URL and display/cache that for future use.

What I tried:

I went through Caching and Cache Invalidation on Glide's github page. I also went though the Google Group thread Ensuring That Images Loaded Only Come From Disk Cache, which shows how to get the image form cache. I also went through How to invalidate Glide cache for some specific images question.

From the links above I see the following code sniplet which shows how to load the image from cache. However this only tries to get the image from cache. If its not present in cache, it doesn't try to get from the network and fails:

Glide.with(TheActivity.this)         .using(new StreamModelLoader<String>() {             @Override             public DataFetcher<InputStream> getResourceFetcher(final String model, int i, int i1) {                 return new DataFetcher<InputStream>() {                     @Override                     public InputStream loadData(Priority priority) throws Exception {                         throw new IOException();                     }                      @Override                     public void cleanup() {                     }                      @Override                     public String getId() {                         return model;                     }                      @Override                     public void cancel() {                     }                 };             }         })        .load("http://sampleurl.com/sample.gif")        .diskCacheStrategy(DiskCacheStrategy.SOURCE)        .into(theImageView); 

Questions:

  1. Is there a cleaner way to achieve the following: Show the GIF image from the cache if present else download the GIF, cache it for later use and show it in the ImageView.

  2. The caching article above mentions the following:

    In practice, the best way to invalidate a cache file is to change your identifier when the content changes (url, uri, file path etc)

    The server sends a different URL to the app when the previous one expires. In this case, I believe the old image will eventually be Garbage Collected? Is there a way to force remove the image from the cache?

  3. On a similar note, is there a way to prevent the Garbage Collection of an image with specific key (to prevent downloading the large file again) and then later instruct to delete the old image from cache when the URL changes?

like image 399
Shobhit Puri Avatar asked Sep 04 '15 20:09

Shobhit Puri


People also ask

Does glide cache images by default?

By default, Glide uses memory and disk caching to avoid unnecessary network calls, it checks into multiple layers of caches before initiating a new request call for an image.

How do you use glide cache?

Glide will put all image resources into the memory cache by default. Thus, a specific call . skipMemoryCache( false ) is not necessary. Hint: beware of the fact, that if you make an initial request to the same URL without the .

What is disk cache strategy in Glide?

Disk Cache Strategies The available strategies allow you to prevent your load from using or writing to the disk cache or choose to cache only the unmodified original data backing your load, only the transformed thumbnail produced by your load, or both.


2 Answers

  1. You don't need a custom ModelLoader to show the GIF from cache if present and fetch it otherwise, that's actually Glide's default behavior. Just using a standard load line should work fine:

    Glide.with(TheActivity.this)    .load("http://sampleurl.com/sample.gif")    .diskCacheStrategy(DiskCacheStrategy.SOURCE)    .into(theImageView); 

Your code will prevent Glide from downloading the GIF and will only show the GIF if it is already cached, which it sounds like you don't want.

  1. Yes, the old image will eventually be removed. By default Glide uses an LRU cache, so when the cache is full, the least recently used image will be removed. You can easily customize the size of the cache to help this along if you want. See the Configuration wiki page for how to change the cache size.

  2. Unfortunately there isn't any way to influence the contents of the cache directly. You cannot either remove an item explicitly, or force one to be kept. In practice with an appropriate disk cache size you usually don't need to worry about doing either. If you display your image often enough, it won't be evicted. If you try to cache additional items and run out of space in the cache, older items will be evicted automatically to make space.

like image 190
Sam Judd Avatar answered Sep 23 '22 09:09

Sam Judd


 Glide.with(context)  .load("http://sampleurl.com/sample.gif")  .skipMemoryCache(true)  .into(imageView); 

You already noticed that we called .skipMemoryCache(true) to specifically tell Glide to skip the memory cache. This means that Glide will not put the image in the memory cache. It's important to understand, that this only affects the memory cache! Glide will still utilize the disk cache to avoid another network request for the next request to the same image URL.for more read this Glide Cache & request optimization.

Happy coding!!

like image 27
Hemant Parmar Avatar answered Sep 23 '22 09:09

Hemant Parmar