On Thu, May 5, 2011 at 1:39 PM, Jon Cooper <[email protected]> wrote: > For example, Mongrel2 uses Libtask, by Russ Cox: http://swtch.com/libtask/ > It seems like this kind of thing could clean up an asynchronous protocol > implementation quite a bit.
libtask is good. I've used it in a few personal projects. It's an excellent choice as long as you don't have large numbers of open fds to read from at once. It (rightly) uses only select, not epoll or any other platform-specific apis. That's probably perfect for the sasl authenticator, since it only uses each incoming connection briefly before passing the fd to another process. kr -- You received this message because you are subscribed to the Google Groups "beanstalk-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/beanstalk-talk?hl=en.
