io_uring, kTLS and Rust for zero syscall HTTPS server
Around the turn of the century we started to get a bigger need for high
capacity web servers. For example there was the C10k problem paper.
At the time, the kinds of things done to reduce work done per request was
pre-forking the web server. This means a request could be handled without an
expensive process creation.
Because yes, creating a new process for every request used to be something
perfectly normal.
Things did get better. People learned how to create threads, making things more
light we...
Read more at blog.habets.se