Skip to main content

linera_cache/
lib.rs

1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Caching utilities for the Linera protocol.
5
6mod unique_value_cache;
7mod value_cache;
8
9pub use unique_value_cache::UniqueValueCache;
10pub use value_cache::{ValueCache, DEFAULT_CLEANUP_INTERVAL_SECS};