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?

link|improve this question

51% accept rate
4  
Read this article: kegel.com/c10k.html – Charles Salvia Dec 17 '10 at 1:02
thank you! very interesting reading. – Daniel Dec 17 '10 at 1:07
feedback

3 Answers

The The c10k problem web page is just right for you. Then you can read source code of lighttpd or nginx.

link|improve this answer
1  
Nginx has too many abstraction layers and its quiet complicated, reading it takes a lot of time (just to dig through all of those abstractions). – Daniel Mar 2 '11 at 20:24
Yes, nginx is quiet complicated, it's hard to get through. You can refer to it when you encounter critical performance problem to see how nginx does it. – burningice Mar 4 '11 at 8:49
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.

link|improve this answer
I'm already using libevent2 (which shows better performance according to my tests and benchmarks at its homepage). – Daniel Mar 2 '11 at 20:25
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.

link|improve this answer
i'm more interested in methodology. – Daniel Dec 18 '10 at 2:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.