Re: Entreprise level python tcp server

2014-07-09 Thread Terry Reedy
> On 7/9/2014 3:36 AM, Arulnambi Nandagoban wrote: >> I like to convert the python script to windows application. The proper way to do asynchronous io on Windows is quite different from the proper way to do it on posix systems (more or less everything other than Windows). If you plan on using

Re: Entreprise level python tcp server

2014-07-09 Thread Emile van Sebille
EVE online uses stackless python (http://highscalability.com/eve-online-architecture) and has seen a max of some 40k simultaneous users. You might want to look into how they do it. Emile On 7/9/2014 3:36 AM, Arulnambi Nandagoban wrote: Hello all, Can anyone tell me the reliability level of

Re: Entreprise level python tcp server

2014-07-09 Thread INADA Naoki
I +1 on Tornado. Here is echo server in some languages and frameworks. https://github.com/methane/echoserver # Benchmark is very outdated. Go is now very faster than before. On Wed, Jul 9, 2014 at 7:36 PM, Arulnambi Nandagoban wrote: > Hello all, > > > > Can anyone tell me the reliability level