bcoe / secure-smtpd

Fork of Python's standard SMTP server. Adding support for various extensions to the protocol.
ISC License
128 stars 42 forks source link

Switch to Using Process Pool #2

Closed bcoe closed 12 years ago

bcoe commented 12 years ago

The main overhead in the server is currently that of spawning off new processes for inbound requests.

I should switch to using a pool of processes.

bcoe commented 12 years ago

As expected switching to using a process pool significantly improved performance see 9abc547

Major threading issues were also fixed in the process.