in reply to Re: Perl MUD?
in thread Perl MUD?

Net::Server::Multiplex is nice, although if you get enough users connected it starts to eat alot of cpu with idle polling.

Event::Lib works almost the same way externally, and scales much better if you have a system where you can use epoll or kqueues.

It was trivial for me to switch to Event::Lib from Net::Server::Multiplex, and the change in performance was unbelievable.