Vol. II
The Data Plane
The Gateway is the "dumb muscle" of the operation. It is stateless, fast, and designed to
fail open.
Written in Go: We leverage lightweight goroutines for massive
concurrency, allowing Crate to handle millions of simultaneous connections with minimal
footprint.
Zero-Copy Routing: We inspect headers and route traffic without
buffering the entire request body, keeping memory footprint incredibly low even under
heavy file-transfer load.
Hot-Swapped Config: Routing rules and certificates are loaded directly
into RAM. When you update a rule, the Gateway updates its internal map instantly via a
Redis broadcast—no restarts, no dropped connections.