Enrico Weigelt wrote:

currently we're using multiple threads both on multiplexer and processor side, but due some MT problems we're thinking to switch
way from that to multiprocessing.


what would you think - does MT bring real performance benefits over MP ?

It definately cuts down on memory requirements. Whether it scales well or not depends on how well you deal with design issues regarding shared variables/structures. It is easy to make a multithreaded server be a dog on an SMP machine by mutexing everything.


Good luch,
Greg



Reply via email to