2015-03-13 10:07 GMT+01:00 Ludovic Gasc <[email protected]>: > Yes, I've the same hope with PyPy because I've seen benchmarks like this: > https://twitter.com/oberstet/status/550741713762136064
Did you follow the URL to the code? https://github.com/oberstet/scratchbox/blob/master/python/asyncio/tcp_echo_server.py The code uses Trollius which should work on PyPy. I expect better performances with asyncio for coroutines. Trollius is still inefficient to handle "nested" coroutines (yield From(coro2)). Victor
