On Fri, Jul 28, 2006 at 12:01:28PM -0700, Zach Brown ([EMAIL PROTECTED]) wrote: > Clearly we should port httpd to kevents and take some measurements :)
One of my main kevent benchmarks (socket notifications for accept/receive) is handmade http server. I compared it with FreeBSD kqueue, epoll and kevent_poll (this is generic poll/select notifications ported to kevent) based (it is the same server but with different event functions. Client was httperf, I ran it with 30k connections in bursts of 3k connection with 1 second timeout between bursts. Here are results: kevent: more than 2600 requests/second epoll and kevent_poll: about 1600-1800 requests/second kqueue: enormous number of connection reset errors (only 62% of successfull connections) (likely misconfiguration, default FreeBSD 6-something does not allow such rates at all). More info can be found on kevent homepage: http://tservice.net.ru/~s0mbre/old/?section=projects&item=kevent > - z -- Evgeniy Polyakov - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html