All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

Evolution of High-Performance Web Servers: From C10k to io_uring, kTLS and Rust

By

guntars

9mo ago· 7 min readenInsight

Summary

This article discusses the evolution of high-performance web servers, focusing on the historical context of the C10k problem and the progression from process-based to thread-based architectures. It then introduces modern solutions using io_uring, kTLS, and Rust programming to create zero syscall HTTPS servers, representing the latest advancements in server optimization and performance.

Key quotes

· 4 pulled
Around the turn of the century we started to get a bigger need for high capacity web servers
At the time, the kinds of things done to reduce work done per request was pre-forking the web server
Things did get better. People learned how to create threads, making things more light weight
Then they switched to using poll()/select(), in order to not just sp
Snippet from the RSS feed
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.

You might also wanna read