-
Notifications
You must be signed in to change notification settings - Fork 660
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Coil with caching #17
Comments
are you looking for this one? |
Also, does Coil have a multi-layered cache and does it support transformation caching? I.e., does it ever cache to memory, besides disk? Does it cache transformed images and not just the source image? These are very important things (to me) that would be really useful (and present in Glide, for example). If it just caches through OkHttp it might be very limiting but I'm not versed enough in their caching to know so any input is welcome. |
I added a section about disk caching to the FAQ here: https://coil-kt.github.io/coil/faq/#how-do-i-set-up-disk-caching Coil does not support writing Coil keeps an in-memory cache for |
@colinrtwhite btw, does Coil support setting up memory cache for specific image ? |
@vegeta2102 You can disable memory caching on a per-request basis like this: imageView.load(url) {
memoryCachePolicy(CachePolicy.DISABLED)
} |
Was looking for a way to do so. |
It is: https://coil-kt.github.io/coil/getting_started/#preloading |
Is your feature request related to a problem? Please describe.
Can you write something doc or example about usage of cache image with Coil ?
I really consider about cache image in Android ( Just refer to Glide cache at link : https://bumptech.github.io/glide/doc/caching.html#cache-keys )
The text was updated successfully, but these errors were encountered: