Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #68212
| From | Sturla Molden <sturla.molden@gmail.com> |
|---|---|
| Subject | Re: which async framework? |
| Date | 2014-03-11 11:18 +0000 |
| References | <87siqpovo8.fsf@elektro.pacujo.net> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.8042.1394536768.18130.python-list@python.org> (permalink) |
Marko Rauhamaa <marko@pacujo.net> wrote: > Now, I've taken a brief look at the new asyncio and it looks as if it > has everything one would hope for (and then some). You'd still need to > supply the protocol implementations yourself. Tulip (the new async module) is nice. But I am a bit confused as to how it combines the IOCP model on Windows with the "readyness" signalling (epoll, kqueue) on Linux, *BSD and Apple. Because these paradigms are so inherently different, I don't see how both can be used effectively with the same client code. But Guido/BDFL is a smart guy and probably knows this better than me :) Another thing is that there is no IOCP support on Solaris, AIX and z/OS using Tulip, only Windows. But Windows is not the only OS with IOCP. I'd prefer that over /dev/poll any day (does Tulip use /dev/poll by the way?) Sturla
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: which async framework? Sturla Molden <sturla.molden@gmail.com> - 2014-03-11 10:17 +0000
Re: which async framework? Marko Rauhamaa <marko@pacujo.net> - 2014-03-11 12:51 +0200
Re: which async framework? Sturla Molden <sturla.molden@gmail.com> - 2014-03-11 11:18 +0000
csiph-web