feldera-buffer-cache 0.287.0

Weighted in-memory buffer caches with LRU and S3-FIFO eviction
Documentation
use enum_map::Enum;
use serde::Serialize;
use std::fmt::{Display, Formatter, Result as FmtResult};

/// Type of a DBSP worker thread that owns a buffer-cache slot.
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Enum, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum ThreadType {
    /// Circuit thread.
    Foreground,

    /// Merger thread.
    Background,
}

impl Display for ThreadType {
    fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
        match self {
            ThreadType::Foreground => write!(f, "foreground"),
            ThreadType::Background => write!(f, "background"),
        }
    }
}