Hi All,
I have a requirement of very fast web server which takes around 5 million hits in 1 hour.
the work of application is very small , it has to take a keep alive request, response a value by checking in memcached and log the request , the logging should rotate on hourly basis.
i already tried with :
Java servlet with Jetty : handles only 1M and crashes after some days of continues run
Java servlet with Apache Tomcat : same as jetty but crashing after some more days
PHP with Nginx : sucks with performance.
C application with G-WAN - handles very good , saw some crashes and logging sucks , i cant do logging as i want in Async way as no code provided.
now should i go with C and NXWEB as i can modify it as i want , and bench marking also seems perfect :) or try another server ?
Thanks for your direction's.