in reply to Lowering memory usage in a perl server
Sometimes if the processing you need to perform is simple and quick you
should try to see if a serialized way of handlying the requests is
enougth! Another possiblility is serialization is not good enougth is to
combine it with a pre-forked strategy (similar to what Apache does) so
you spread the load of the serialization by having a set of processes
listening to the same socket!