Hi all,
First, maybe the subject don't match my question. That is the best sentence that i can give (sorry for my bad english).

For my hobby project, i build a socket & http server with python & gevent.
And i just realized that python's GIL make it can't work nicely with multithread process & multicore processor.
For http server, i can simply use nginx to balance the load between worker.
The problem is for socket server. With haproxy, if some client X connecting to worker A, then client X send some packets. Will all packets that sent by client X to my sockets server will be automagically received by worker A?

Thanks

Reply via email to