logo
Expand description

The cache module declare the cache functionality for webmachine is executing in. Basically implements in-memory and Dummy cache. Inspired by any-cache.

TODO: [ ] - partitioning [ ] - fnv [ ] - POLICY in key [ ] - policy implementation (LFU, LRU, etc.) [ ] - async loader

Structs

An implementation of a cache that actually doesn’t cache at all.

An implementation of a cache with a HashMap.

Traits

A cache that can store arbitrary values and namespace them by key types.

A key that is usable in a cache.