Expand description
Endorphin is key-value based in-memory cache library with custom expiration policies.
Basically, endorphin provides four pre-defined policies.
LazyFixedTTLPolicy
: A Lazy TTL Policy that checks TTL when accessing values.MixedPolicy
: TTL & TTI mixed policy.TTIPolicy
: Time To Idle Policy.TTLPolicy
: Time To Live policy .
You can also define new custom policies by using ExpirePolicy
.
§Examples
use std::thread::sleep;
use std::time::Duration;
use endorphin::policy::TTLPolicy;
use endorphin::HashMap;
fn main() {
let mut cache = HashMap::new(TTLPolicy::new());
cache.insert("Still", "Alive", Duration::from_secs(3));
cache.insert("Gonna", "Die", Duration::from_secs(1));
sleep(Duration::from_secs(1));
assert_eq!(cache.get(&"Still"), Some(&"Alive"));
assert_eq!(cache.get(&"Gonna"), None);
}
For more examples, visit here
Modules§
- An expiration policy including four pre-defined policies.
Structs§
- A hash map implemented with
hashbrown
internal.