A lightweight and simple library to cache any serializable objects, using the LRU algorithm, two storage levels (files, memory), encryption and life cycle.
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url"https://jitpack.io"}
}
}Add the dependency:
dependencies {
implementation'com.github.kernel0x:falcon:1.0.2'
}Create an object using the builder.
Cache<Object> cache = newCache.Builder().build(getContext());OR with special type
Cache<Cat> cache = newCache.Builder().build(getContext());Available methods in the Builder
- defaultLifetimedefault cache lifetime
- maxSizemaximum cache size (file and ram)
- caseSensitiveKeyskey case sensitivity
- autoCleanupauto clean timer time
- dualCacheModecaching mode
- encryptStrategyencryption algorithm
Everything is simple. Now you can cache something. Important! Cached objects must implement Serializable
cache.set(KEY, newCat());cache.set(KEY, newCat(), DualCacheMode.ONLY_DISK);cache.set(KEY, newCat(), DualCacheMode.ONLY_RAM);cache.set(KEY, newCat(), newDuration(1, TimeUnit.SECONDS));- encryption
- cache location selection (file or memory)
- LRU, cache extrusion method
- cache lifetime selection
- thread safe
It's totally tested. Check the tests! 😉
Checkout the Releases tab for all release info.