Tez
An HTTP server in C++, written from sockets up.
A web server built without leaning on a framework — raw sockets, the HTTP/1.1 request lifecycle, and a concurrency model that has to stay correct under simultaneous connections.
The hard part — The problem every production server hides from you: handling many clients at once without races, leaks, or blocking the event path.
- Full request lifecycle — parse, route, respond — with no external HTTP framework.
- Concurrent connection handling via a thread-pool model, latency kept flat as connections scale.
- RAII discipline throughout — manual memory & resource management, no leaks under sustained load.
