Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Looking for a simple open source non-copyleft caching for Android (SDK 7+) class.

The purpose is primary to store the Bitmaps fetched asynchronously (so i don't need this functionality to be included in the cache class).

I was using a weakList for this purpose, that was naturally a bad solution, with Guava cache that is a little better but still not fine.

It's preferred that the cache is able to store any serializable Object, not just a Bitmap, and that i could easily purge the objects of certain tag used while the object is added to cache.

The best option would be to get the filesystem cache like wrapping the sqlite database. It would be great if the cache would be cleared by Settings >Manage Application > Clear Cache

share|improve this question
I don;t think there exists any cache system for Android. – Nambari May 31 '12 at 21:26
@thinksteep It's as smile as to store the Object's at List, i want the runtime solution only. It's easily to be written by myself, but i don't see the good reason to reinvent a wheal. – A-Live May 31 '12 at 21:46

7 Answers

up vote 8 down vote accepted

The plain LruCache suggested above is an in memory cache. From your question it sounds like you are looking for a disk cache solution.

Read the Disk Cache of the Caching Bitmaps android training doc.

Then take a look at the DiskLruCache implementation discussed on the following thread : Using DiskLruCache in android 4.0 does not provide for openCache method

You can grab the DiskLruCache source on GitHub.

share|improve this answer
I second this. Jake Wharton is a solid developer. – shkschneider Jul 24 '12 at 9:59

How about android.util.LruCache? If you need to support older platforms, simply copy it in you project. EDIT: it's actually in the compat/support library.

share|improve this answer
Guava cache seems to be more flexible, and i'd prefer now to use not runtime but filesystem cache, thanks for the hint though. – A-Live Jul 18 '12 at 3:37
developer.android.com/training/displaying-bitmaps/… An article on android discussing options for image caching. – krishnakumarp Jul 18 '12 at 5:54

ICSDiskLruCache.java. This is a port of the DiskLruCache available in ICS and later versions of Android, open-sourced by Google as part of the IO 2012 Android App so it works with versions down to (at least) API level 7.

Find the source at http://code.google.com/p/iosched/source/browse/android/src/com/google/android/apps/iosched/util/ICSDiskLruCache.java

share|improve this answer
2  
Link is broken. – Matthew Feb 18 at 20:50

http://docs.guava-libraries.googlecode.com/git-history/v12.0/javadoc/com/google/common/cache/package-summary.html

share|improve this answer
Seems to be a very powerful solution, thanks. – A-Live Jun 1 '12 at 12:27

Ignition is what are you looking for: https://github.com/kaeppler/ignition. It allows you to cache images, serialized objects. For cashing part, work with ignition-support

Here's the API for ignition support: http://kaeppler.github.com/ignition-docs/ignition-support/apidocs/.

share|improve this answer

I would recommend that you use the wide-used and before known as droid-fu the refactored and really powerful lib called ignition. The ignition library is mainly maintain by Matthias Käppler lead mobile dev of Qype. The library has a cache framework and RemoteImage Widget (and many more useful classes). Moreover is Maven ready, so is easy to add the dependency. Take a look at the cache javadoc: http://kaeppler.github.com/ignition-docs/ignition-support/apidocs/

share|improve this answer
Interesting, i'll check it, thanks. – A-Live Jul 17 '12 at 18:29

You can create your own image cache following this official android documentation that not only gives you the code, but also explains how it works:

http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html

They also explain the whole process, from loading bitmaps, processing them in a background thread, caching them and displaying them

http://developer.android.com/training/displaying-bitmaps/index.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.