On Fri, Nov 6, 2009 at 4:28 PM, Shawn Krisman <[email protected]> wrote:
> A while ago the folks at ccp games claimed that they where going to release
> their asynchronous IO library completely open source. Did this ever occur.

No.

> Are there other such libraries if not?

For networking and file IO, there are some libraries here:

http://code.google.com/p/stacklessexamples/wiki/StacklessNonblockModules

For networking on Windows using IOCP, there is a library here:

http://code.google.com/p/pyiocp/

But, keep in mind, none of these have been used in production.  The
most commonly used, stacklesssocket, has the same limitations the
underlying resources use - that is, it uses select which on Windows
for Python at least can only deal with 512 connections at a time.

Cheers,
Richard.

_______________________________________________
Stackless mailing list
[email protected]
http://www.stackless.com/mailman/listinfo/stackless

Reply via email to