Are there any resources, books and in-depth articles on this subject? I'm interested in writing high load web server for specific needs. Googling gave lots of things, but some of them are outdated, others don't cover what i need.
Any suggestions?
feedback
|
|
The The c10k problem web page is just right for you. Then you can read source code of lighttpd or nginx. | |||||||
feedback
|
|
I also suggest c10k, and then have a look at libev. This blog post is also interesting and partly inspired me when I wrote a web sever. | ||||
feedback
|
|
You could make use of a good library designed for implementing high-performance network applications. For instance, have a look at zeromq. You may also like ACE. Its main interface is C++, but the lower-level API is implemented in C. It is more sophisticated than zeromq, but the site has lots of good documentation on implementing scalable network servers. Especially, see their articles on the reactor pattern. | ||||
|
feedback
|