dbsp 0.300.0

Continuous streaming analytics engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Buffer cache that can be used to cache reads.

/// Buffer-cache implementations and cache statistics.
mod cache;

pub use feldera_storage::fbuf::{FBuf, FBufSerializer, LimitExceeded};

pub use cache::{
    AtomicCacheCounts, AtomicCacheStats, BufferCache, CacheAccess, CacheCounts, CacheStats,
};

pub(crate) use cache::build_buffer_caches;