I want to use the quick keystore on an Android device, where the values are bitmaps of images. The storage should be copied to disk and provide some caching while minimizing IO disk. Multithreaded access is desirable but not required.
I looked at Java Berkeley DB , which seems to meet the requirements. Are there other libraries that work better? Or does Berkeley DB work well on the Android platform?
I'm fine with a solution that requires one pair of keys and values to be in memory, but storing a full pair of key and value values can exceed the device’s memory size.
source share