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
2
votes
4 answers
How to prevent Out of memory error in LRU Caching android
I have used Memory LRU Caching for caching bitmaps in my android application.but after some of the bitmaps are loaded into LRU map app force closes saying out of memory exception. I have spent whole day behind this but yet not found the solution…

Ravi
- 93
- 3
- 11
2
votes
1 answer
Superfast library for Android image caching
I looking for very fast Android image caching library. It's should support memory and disk caching, and also work fine with reusable views(such a ListView or GridView).
I've tried to use Picasso and UniversalImageLoader, but I want to add more…

bvitaliyg
- 3,155
- 4
- 30
- 46
2
votes
2 answers
Caching images returned from a web api service
No matter what I do I can't get images returned from a web api too cache, I am seeing a request to the server every time I request the image.
I have tried many permiations for the header setting, here is my latest effort:
public class…

Dan
- 29,100
- 43
- 148
- 207
2
votes
1 answer
How to convince browser to load images from cache rather than get from server
i am using Quake Slider in part of my website.this plugin is creating div(s) from images for making transition.the problem is when div(s) get created , background-image property of them changing according to current image src attribute, and causing…

Behnam Esmaili
- 5,835
- 6
- 32
- 63
2
votes
2 answers
Asynchronous image listing and caching in android
I'm new to android and need help with best examples which shows asynchronous image listing(set of images ). And interested to know the concept of image caching . How can we use low memory for image listing ?

Arun M R
- 41
- 6
1
vote
1 answer
DiskCache plugin imageresizer in MVC3
For my MVC project (Image Server Application), I cannot do caching using imageresizer. I can access my images like this and the image source could be either FileSystem/Database (Dependency injeciton) :
localhost/images/123.jpg?width=500…

Furqan
- 66
- 6
1
vote
0 answers
AlamofireImage - fetching image using MVVM
We are using AlamofireImage in our project to make use of its image caching system. However, I'm wondering the best way to fetch the image without contradicting MVVM.
Alamofire's image download method returns the following type:…

DevB1
- 1,235
- 3
- 17
- 43
1
vote
0 answers
How to get the URI of expo-image-picker into an cached image of react-native-expo-image-cache (react-native)
I am getting the URI of the imagePicker (expo-image-picker @13.3.1), but I can not get the URI in the cached image (react-native-expo-image-cache @4.1.0).
Here is my code snipped for the imagePicker and the return statement:
class SignUpForm extends…

tk97tk
- 71
- 1
- 6
1
vote
0 answers
cache image using unique id (not based on URL) in react native
i have a one project. in that their is a list which i get from api and the api's response contains a one image url which frequently changes ,but in that one one part of image name is common and the image also a same. but the later half signature is…

Nishant
- 11
- 2
1
vote
1 answer
what is the default caching behavior of NINetworkImageView in Nimbus for iOS
I was looking at the NINetworkImageView in the Nimbus project and was curious about that the default caching settings are. Once I call setPathToNetworkImage and loads an image, does that go in the global cache? Is it smart enough to realize it's…

MonkeyBonkey
- 46,433
- 78
- 254
- 460
1
vote
3 answers
Rails 3: How to prevent image caching when the image is specified in the CSS file?
Consider the following CSS:
.my_class {
background-image: url(/images/sprites.png);
}
Sometimes I change sprites.png by adding new sprites to it, so I don't want the browser to cache it.
One idea I thought of is to add style="background-image:…

Misha Moroshko
- 166,356
- 226
- 505
- 746
1
vote
1 answer
How to stop image caching on a wordpress webpage
I have an image called webcam.jpg on the server. This image is replaced by a new image every 2 mins with the same name.
I have a WordPress page to display this image.
The issue is this image getting cached in the browser, so it shows the old photo.…

Asanka
- 483
- 2
- 8
- 21
1
vote
2 answers
CSS Image Caching
In terms of client-side image caching, is there a difference between the following:
**Option #1**
and
**Option #2**
style.css
#myimage {
…

NakedBrunch
- 48,713
- 13
- 73
- 98
1
vote
0 answers
set Memory Cache in glide
I am using glide v4 I am trying to resize the cache (default on glide is 250mb).
I do this like this:
@GlideModule
public class LimitCacheSizeGlideModule extends AppGlideModule {
@Override
public void applyOptions(@NotNull Context context,…

Farzad Kamali
- 751
- 2
- 6
- 24
1
vote
0 answers
Cache issue with images with Universal Image Loader
I am caching images in my app using Universal Image Loader and the images get cached as expected. Now the issue is that the cache gets deleted after a certain span of time and all the images get cached again and server load increases drastically. My…

Manish Sukhija
- 31
- 1