/rustwebserver

Building a Multithreaded Web Server (The Rust Programming Language Book)

Primary LanguageRust

Building a Multithreaded Web Server

Plan for building the web server:

  1. Learn a bit about TCP and HTTP.
  2. Listen for TCP connections on a socket.
  3. Parse a small number of HTTP requests.
  4. Create a proper HTTP response.
  5. Improve the throughput of our server with a thread pool.