flyby 0.1.1

A high-performance Rust framework for composable data-ingestion pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# flyby::memory

Shared-memory sink for FlyBy. Default backend, enabled by the `memory`
feature on the `flyby` crate.

## Status

**Implemented (v0.1):** anonymous mmap SPSC ring, fixed slot layout,
`SharedMemorySink` write path, `pop` for same-process consumers.

**Planned:** file-backed multi-process regions, `Producer`/`Consumer`
split, MPSC.