[OCaml Planet] Building httpz: a high-performance HTTP/1.1 parser with zero heap allocation using OxCaml's unboxed types, local allocations, and mutable local variables.

The parser achieves zero allocation by leveraging OxCaml's unboxed types and local allocation features to avoid heap pressure during request parsing.

https://anil.recoil.org/notes/oxcaml-httpz

My (very) fast zero-allocation webserver using OxCaml

Building httpz, a high-performance HTTP/1.1 parser with zero heap allocation using OxCaml's unboxed types, local allocations, and mutable local variables.

Anil Madhavapeddy