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
1
vote
1 answer
SDWebImage caching is taking time to load the image from cache in uicollectionview cell
I am using SDWebImage library to load images in a collection view .
Library downloads the image from server and caches but when I quit my app and re-run , it takes time to load image from cache.
( placeholder image is displayed for 2-3 secs…

user3804063
- 809
- 1
- 14
- 32
1
vote
5 answers
Image caching using piccaso, for supporting offline and online both
I am using Picasso in my android application for image caching. But whenever i open app the images starts loading from the server. But i want to use cached images from disk and simultaneously it should check for new image on server as well. Same…

Suresh
- 11
- 2
1
vote
1 answer
Swift 2 Parse and KingFisher cache images
I'm using KingFisher https://github.com/onevcat/Kingfisher
library so i can cache the images and if there is anyone familiar with it i want some hints.
So i have the following code
let myCache = ImageCache(name: recipesClass.objectId!)
let queue…

Konstantinos Natsios
- 2,874
- 9
- 39
- 74
1
vote
1 answer
Swift 2 reloadData adds more cells to the UICollectionView
I've this annoying bug in my app that every time I load the UICollectionView controller, it duplicates the cells.
So this is the when the collection view loads for the first time:
I've 2 view controller so this is the second view controller. If I…

Renboy
- 451
- 4
- 21
1
vote
0 answers
Social Login with ionic - cache profile image?
Im getting memory issues when my splash screen loads. I think it may be due to my user profile images.
If the user doesn't have one (didn't log in with social media and hasn't updated their profile) I load/call an app logo image locally (200px x…

rcpilotp51
- 524
- 1
- 3
- 22
1
vote
3 answers
Android Picasso clear image from disk and cache
I'm using Picasso for image loading, I use it with NetworkPolicy.OFFLINE,
but at some point I want to update the image from internet and I'm trying…

SpyZip
- 5,511
- 4
- 32
- 53
1
vote
2 answers
Caching Imager using UNIVERSAL IMAGE LOADER
I am trying to cache image using universal image loader
DisplayImageOptions defaultOptions = new DisplayImageOptions.Builder().cacheOnDisk(true).cacheInMemory(true).imageScaleType(ImageScaleType.EXACTLY).resetViewBeforeLoading(true)
…

bob
- 155
- 3
- 13
1
vote
1 answer
Image cache issue in iPhone
I am newbie to iPhone programming and working on a demo app. In that I have made a sample chat module between two users. I have displayed an image with every chat bubble. All things are working fine but the only issue is when I send a message or new…

Concentrated H2SO4
- 17
- 7
1
vote
3 answers
Best image cache for loading numerous images in UITableView for IOS?
Could any one please tell me the best image cache available for loading numerous images in UITableviewcell?
Currently i am using SDWebimageCache but it seems it is creating problems in IOS9 particularly in iPad where the table scrolling makes the…

Daniella D'Cruz
- 388
- 1
- 3
- 15
1
vote
1 answer
SDWebImage - Ignores set value of MaxCacheSize
I'm working on an iOS app and have just started implementing the amazing cache plugin SDWebImage. The thing I'm stuck at now is that I'm trying to implement a cache with a "limited size" of 200 or 500 MB and I've found the function setMaxCacheSize…

user2105364
- 11
- 1
- 2
1
vote
2 answers
How to correctly cache images
I just installed Google's Page Speed plugin to Firebug, and everything looks good except for caching. I have set headers to cache my JS and CSS files, but it says the images aren't being cached. How can I make sure the images get cached for 30…

James Simpson
- 13,488
- 26
- 83
- 108
1
vote
2 answers
Using Cache in android application
I've developing a android application and there's a feature in it that loads some images using asynctask. I think if i can save these images as cache i can boost the performance of the app as i am loading a lot of images. How can i do this? How can…

CraZyDroiD
- 6,622
- 30
- 95
- 182
1
vote
1 answer
how to manage Image caches in ios when using 2 caching libraries
I am using SDWebImage image loaded as the default image loader, I also use AZAPreviewController to display images in the Fullscreen view.
AZAPreviewController using its own cache folder to maintain caches for the same images but images are not…

Esha
- 1,328
- 13
- 34
1
vote
2 answers
iOS - SDWebImage loading wrong Image
I am using SDWebImage Library for caching and Lazy loading. But I found that sometime it is showing Image of another cell.
Detail Scenerio
There is CollectionView having cells containing UIImageView and Labels.
ImageView contains the Image of…

Mrug
- 4,963
- 2
- 31
- 53
1
vote
1 answer
where to persist multiple image files on android
I'm writing an android app that makes use of many images(dozens). These images, like most of the other data in the app, are updated from a remote database. For the data I am going to have a local database and sync it with the remote database every…

moe
- 105
- 1
- 6