Questions tagged [image-caching]

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.

222 questions
0
votes
0 answers

which page replacement algorithm android LRUCache class uses?

I am using LRU disk cache algorithm as explained developer.android.com. I have some piece of code that works fine for image downloading and caching in memeory and disk cache as well. But I am unable to find out which algorithm this LruCache uses for…
Pankaj Deshpande
  • 502
  • 2
  • 5
  • 15
0
votes
1 answer

How to enable image caching?

How do I enable image caching for my jsp page ? The jsp page gets refreshed at an interval of 1 second. So I want to cache the image, so as not annoy the user ! There are 2 images, with weighing 4 KB and another 13 KB.
saplingPro
  • 20,769
  • 53
  • 137
  • 195
0
votes
3 answers

Image generated with PHP caching

I have a script that is generating an image with PHP on a server, in the form of image.png. I'm then using this image in different places using . The problem I'm running into is that even though the…
Samsquanch
  • 8,866
  • 12
  • 50
  • 89
0
votes
2 answers

load data into an array using for loop android

I am trying to populate an array of image urls from Post class but the activity returns a blanked page. am i doing it right. sorry am learning android don't know much. ArrayList PostDetails = new ArrayList(); for (int…
PIONA
  • 79
  • 1
  • 5
  • 12
0
votes
1 answer

android : progress indicator for image loading

I am using the below algorithm for downloading and caching images. It is working good. Initial loading of an image takes time as expected. I want show a progress indication to show this. I want the progress indicator to come only in the image view…
png
  • 4,368
  • 7
  • 69
  • 118
0
votes
3 answers

Options for Image Caching

I am running a website on google app engine written in python with jinja2. I have gotten memcached to work for most of my content from the database and I am fuzzy on how I can increase the efficiency of images served from the blobstore. I don't…
clifgray
  • 4,313
  • 11
  • 67
  • 116
0
votes
1 answer

How to cache images when using imageWithData to make a UIImage

I'm downloading and saving some images from the web into my app's private storage to be displayed in tableview cells. I have it working, but unfortunately unless I'm using : [UIImage imageNamed: @"filename"]; I don't get the built-in cache, and…
jfisk
  • 6,125
  • 20
  • 77
  • 113
0
votes
1 answer

Image handling rails + iOS Core Data

I am developing an iOS app that will have a number of images. These images are associated with Show object and Band objects. I am fairly new to iOS development On the server, the Shows and Bands are associated with a list of images. Currently I am…
JonathanC
  • 967
  • 11
  • 30
0
votes
1 answer

drupals imagecache module only works with 'default' site?

i have multisite setup where imagecache module resides under sites/all. My goal is for every site to have its own imagecache folder filled with requests, belonging to that site; e.g. referencing them by…
mschr
  • 8,531
  • 3
  • 21
  • 35
-1
votes
1 answer

Backup and restore Kingfisher image cache

Using Kingfisher, I want to ship a pre-seeded image cache with my application bundle, so my app can function offline, while still able to fetch future images that weren't shipped with the app. I used KingfisherManager.shared.retrieveImage(with: url,…
Jeff Lockhart
  • 5,379
  • 4
  • 36
  • 51
-1
votes
1 answer

How can I add caching function in picasso?

How can I implement following task Use an image caching framework and a networking framework? Below My implementation Picasso.get().load(introduction.getImage()).into(holder.imageView); And I found this sample: Picasso.with(context) …
-2
votes
2 answers

Why isn't my image un-caching?

I need an image to constantly be updated when the page is reloaded so I decided to put a number at the end of the path but for some reason my code keeps breaking the page:
egr103
  • 3,858
  • 15
  • 68
  • 119
1 2 3
14
15