Image cache reduces client-server requests for images.Image cache is useful for fast retrieval of images. we can store server side images in application using image cache and retrieve any time when we want even if server connected or not.
Questions tagged [image-caching]
222 questions
3
votes
1 answer
Images are not stored in the cache
I have this method, everything is worked perfectly but images always got from server and not load from cache! what happened ?
public static void makeImageRequest(String Unique_ID, final View parentView, final int id) {
String url =…

shirin
- 129
- 1
- 9
3
votes
1 answer
Picasso cache returning transformed image instead of original
I am using Picasso for my Android app. Using Picasso transforms i rendered the images transformed in some sections of my app, but when i try to render the image in another part, I get the transformed image as well. How can i get the original image…

Miguel Carvajal
- 1,785
- 19
- 23
3
votes
2 answers
How to cache images in IOS App with expiry age using swift
In an iOS app, how can I cache an image with specified expiry age? There are examples on how to store and retrieve images, but how can I set an expiry period to auto delete old images?

Giridhar
- 512
- 5
- 20
3
votes
2 answers
I am not able to cache the images as I bindind Image using MvvmCross
I am new to Xamarin Android Application.I use Picasso component to cache and download Images and It works fine.
Picasso.With (this.Activity).Load ("Here I pass Url").Into (imageview);
Now I am using MvvmCross binding like:

Dhruv Gohil
- 842
- 11
- 34
3
votes
1 answer
Encryption in disk caching Picasso android
I am planning on implementing, Picasso with OKHTTP for Disk caching of images. But I also plan on having encryption on images caches on disk. What should I do? I couldn't find a single helpful link, that can guide me in the right direction. Any kind…

ShahrozKhan91
- 710
- 10
- 19
3
votes
2 answers
Caching not working with Picasso
When i am using the sample project of Picasso given at their Github page,the images are getting cached. Means once they are loaded,they appear even when i turn off my internet connection.
But when i use the same method to download the image from…

Diffy
- 2,339
- 3
- 25
- 47
3
votes
1 answer
Different cache types SDWebImage
I'm using SDWebImage for a while caching all my images but now i want to have more than one cache to to group various types of images. For example three kind of caches with several images each, so in runtime i want to clear one of them or have…

silvaric
- 1,668
- 17
- 27
3
votes
1 answer
node.js: browser image caching with correct headers
I'm developing a web application that manages a large amount of images, stores and resizes them.
the request of an image is something like:
domain:port/image_id/size
The server takes the image_id and if there isn't yet an image of such size it…

Daniele P.
- 228
- 4
- 16
3
votes
0 answers
Square Picasso not displaying images from disc cache
Downloading images and caching in memory is working.
But there are no displayed image when I turn off internet connection. I expect that there should be displayed images from disc cache. I have checked that images are downloaded to…

M Kosztolowicz
- 290
- 4
- 11
3
votes
1 answer
trying to change cache headers on reverse_proxy
I'm trying to change the cache-control & Expires headers coming through an apache reverse_proxy. I can't change the origin server configs or code ATM.
ExpiresActive On
Header unset Etag
Header unset Cache-Control
Header unset Expires
…

rumaeagle
- 31
- 3
3
votes
2 answers
How do I force Drupal ImageCache create image styles on upload, not on first image request?
I am using ImageCache to generate several image styles for certain uploaded pictures. However, the site is going to be pretty high-load, so it might be more resource-efficient, if those sizes were created once the file is uploaded, not on first…

Vasyl Zhuk
- 106
- 1
- 5
3
votes
1 answer
ImageLoader - Don't download image if it's already being cached
I don't want to download images if they are already cached. I am using ImageLoader library by NOSTRA. Please tell me if there is any way to do that. Following is the code:-
DisplayImageOptions options = new DisplayImageOptions.Builder()
…

Ahmad Ali Nasir
- 1,382
- 3
- 16
- 29
2
votes
1 answer
Picasso Image Caching using Bitmap
This contents of this loadImage method never gets called although I am calling this method in OnActivityResult.
public void loadImage(Uri uri){
File file = new File(getApplicationContext().getExternalCacheDir().getAbsolutePath() + "/" +uid +…

miraquee
- 181
- 10
2
votes
2 answers
TableView Cells not formatting correctly unless image is cached
I am having an issue with my tableview, where the cells don't orient correctly before an image is cached, and only once I return back to a page and my image is cached do they orient correctly. Here is an example of what I am talking about, the first…

Wana_B3_Nerd
- 613
- 3
- 7
- 21
2
votes
2 answers
SDWebImage vs. Nuke for Swift
I have been using Nuke up until last week but I switched to SDWebImage because it is a few times more popular than Nuke and seems more built out.
However, after switching to SDWebImage I have noticed significantly longer build times. I am not asking…

Rage
- 870
- 9
- 27