Expand description
SerializeQueue - named-FIFO map for Serialize.Enqueue /
Serialize.Dequeue syscalls.
every per-key FIFO is bounded with a drop counter
so a hostile or buggy producer cannot grow the queue unbounded.
enqueue drops the OLDEST entry on overflow (FIFO eviction)
and ticks the per-key drop counter. The default cap is
SerializeQueue::DEFAULT_PER_QUEUE_CAP; production deployments
override via NodeConfig (see ).
Structs§
- Serialize
Queue - Named-FIFO map with per-queue bounded capacity.