Let’s Build a Web Server, Part 3(ruslanspivak.com)
ruslanspivak.com
Let’s Build a Web Server, Part 3
https://ruslanspivak.com/lsbaws-part3/
2 comments
web server tutorials should focus more on designing/building encoding/decoding pipelines. Because that's what it's really about. i/o can be disk, network, or proxing to another http client etc.
Once the web server is built, you'll realize that you need to support compressing/decompressing, or piping blobs to some other encoder/decoder.
Once the web server is built, you'll realize that you need to support compressing/decompressing, or piping blobs to some other encoder/decoder.
I'd love some material on the topics you mentioned for Go.
Now that you mentioned WSGI though I'm tempted to write a post on building a client/server over that protocol too (or probably FastCGI instead).
[0] http://notes.eatonphil.com/web-server-basics-http-and-socket...