Backend Cache Manager Implementations
The following backend cache manager implementations are provided by this crate:
cacache
cacache
is a high-performance, concurrent, content-addressable disk cache, optimized for async APIs. Provides traditional buffered caching.
moka
moka
is a fast, concurrent cache library inspired by the Caffeine library for Java. Provides in-memory caching with traditional buffering.
quick_cache
quick_cache
is a lightweight and high performance concurrent cache optimized for low cache overhead. Provides traditional buffered caching operations.
streaming_cache
StreamingManager
is a file-based streaming cache manager that does not buffer response bodies in memory. Suitable for handling large responses efficiently.