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
0
votes
0 answers
How to cache images using volley
I am using Volley Library for my app. I want to cache images to memory and also use diskcaching for some of data required for further processing. The problem I am facing is, all the available links talks abt direct image url passed:
NetworkImageView…

chitra
- 77
- 9
0
votes
1 answer
Swift - How to save memory using AlamofireImage/ImageShack?
I'm using Alamofire, AlamofireImage to cache images using ImageShack storage with Firebase backend. Sometimes memory comes over 100MB. I want to learn how to improve my image caching and well scaling before uploading. For example I have declared one…

iamburak
- 3,508
- 4
- 34
- 65
0
votes
1 answer
How do I implement a special event in jQuery?
I'm using this plugin to replace jQuery's imgload event with one that will fire regardless of whether the image is cached.
The (minimal) documentation says to use it thus:
Usage:
$(images).bind('load', function (e) {
// Do stuff on load
});
So,…

Isaac Lubow
- 3,557
- 5
- 37
- 53
0
votes
1 answer
ionic-cache-src not working in android
I want to use image cache in my ionic app, I found ionic-cache-src in google, but after I try use that, that's not working, just show blank rectangle.
here is my code :

Redturbo
- 1,563
- 8
- 22
- 34
0
votes
1 answer
How to remove image caches when app closed?
I have successfully downloaded images with image caches.
I want to remove all image caches when i close the app also want that when the app goes in background state any one have idea how can i do that?

Hitesh Boricha
- 114
- 1
- 11
0
votes
0 answers
Error in Image caching with Image Caching Library - JetImageLoader
I am trying to implement image caching for my "WINDOWS 10 UNIVERSAL APP".
But when using that package I am getting an How to handle this.
Reference used is sample app in https://github.com/artem-zinnatullin/jet-image-loader
Error: Reference to Type…

djkpA
- 1,224
- 2
- 27
- 57
0
votes
1 answer
Laravel 4 imagecache intervention not displaying images
Here's the product page with an imagecached image: http://kmk-prof.kz/product/dx700lc
As you can see - image is not being displayed and has following url: /imagecache/catalogue/dx700lc-541a82fe99ac3.jpg
But when i try to browse that image just in my…

Alexander Kim
- 17,304
- 23
- 100
- 157
0
votes
1 answer
Fetching cached image not working
I was trying to load and cache images in my app for showing on UITableView.
The original concepts looks like:
if (image in cache){
show cached image;
}else{
if (image in file){
show filed image;
}else{
load image from web…

bluenowhere
- 2,683
- 5
- 24
- 37
0
votes
1 answer
How to check or ensure that client side cached images are rendered on android app on subsequent requests?
Our server returns ads to the publisher's app (android/iOS apps). Let's consider this case where the returned ad is an HTML with img tags containing remote images (resources stored in third party servers of ad networks). Something like this -
…

Sandeepan Nath
- 9,966
- 17
- 86
- 144
0
votes
0 answers
Will client side caching work if an image is output straight to the browser and not loaded from a saved file on server?
I guess this is a very silly question, and caching will not work in this way, but let me explain what I am doing -
I have a PHP script resizeImage.php which runs on an nginx server and resizes a remote image and outputs the resized image directly…

Sandeepan Nath
- 9,966
- 17
- 86
- 144
0
votes
0 answers
Android - SkImageDecoder::Factory only when i read image with extension .png
In my Android app i have to read a lot of images, for this reason i have implemented image caching. This is the method through which i decode my images(that were stored in the assets/ folder):
private Bitmap getBitmapFromAsset(String strName)
{
…

Francesco Lombardo
- 335
- 1
- 4
- 15
0
votes
0 answers
cache static content to client browser like (images,icons)
Can anyone guide me how can I cache my static content like logo icons folder to client browser with expiry time period ..
that is what Im trying only
<%@ OutputCache Duration="60" VaryByParam="None" %>

Mike
- 751
- 2
- 10
- 25
0
votes
4 answers
SDWebImage linking issue
I am trying to use SDWebImage framework for asynchronous loading and caching images.
I could integrate SDWebImage project in to my project and build successfully. But I cannot use this line of code
[pCell.imgViewThumb sd_setImageWithURL:[NSURL…

smartsanja
- 4,413
- 9
- 58
- 106
0
votes
2 answers
Best practice for managing most used cached images
In the spirit of not reinventing the bicycle I'm wondering if there's an Android best practice approach (which I'm not finding through google, but I'm probably not articulating my search correctly) for keeping a defined amount of local storage…

Yevgeny Simkin
- 27,946
- 39
- 137
- 236
0
votes
1 answer
UIImageView+AFNetworking Managing Caching & Allocations
I am using the UIImageView+AFNetworkingin order to download and display an image from a URL in a UITableView. Everything is working great and my question is around the caching elements & allocations that are implemented with this call.
In using…

Chase S
- 448
- 3
- 20