Tag Archive | "servers"

Scaling Python Servers with Worker Processes and Socket Duplication

Saturday, January 29, 2011

13 Comments

Developing servers that scale is usually quite tricky, even more so with Python and the absence of worker threads which can run on multiple cpu cores [1]. A possible solution are worker processes that duplicate the client’s socket, a technique that allows the workers to processes requests and send responses directly to the client socket. [...]

Continue reading...