cachet 0.1.0

A composable, customizable multi-tier caching library with rich feature support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Cache builder types for constructing single and multi-tier caches.
//!
//! This module provides the builder pattern infrastructure for creating
//! caches with configurable storage, TTL, telemetry, and fallback tiers.

mod buildable;
mod cache;
mod fallback;
mod sealed;
mod transform;

pub use cache::CacheBuilder;
pub use fallback::FallbackBuilder;
pub use sealed::CacheTierBuilder;
pub use transform::TransformBuilder;