Expand description
Pluggable cache repository implementations.
Each backend implements camel_api::cache::CacheRepository and is
registered with the runtime through the cache registry.
Re-exports§
pub use disk_offload::DiskOffloadRepository;pub use memory::MemoryCacheRepository;pub use redb::RedbCacheRepository;
Modules§
- disk_
offload - Disk-payload offload decorator for
CacheRepositorybackends. - memory
- In-memory cache backend backed by
moka. - redb
- Redb-backed persistent cache repository.