On Sun, Mar 3, 2013 at 4:26 AM, lars van Gemerden <[email protected]> wrote: > 3) Given 2) is it reasonable to accept that this means that any > networking framework that you just run, like web.py cannot be as they > stand be Stackless compatible? > ehm ... sounds like bad news :-)
Stackless offers cooperative microthreading. That means you have to run the scheduler, and that any code that runs has to yield to it, so that the other microthreads can run. Any existing application will have it's own main loop, or delegate running to whatever framework it uses. Stackless can't alter reality to make these run the scheduler and yield in all the right places - but it can fake that reality by the monkeypatching. Cheers, Richard. _______________________________________________ Stackless mailing list [email protected] http://www.stackless.com/mailman/listinfo/stackless
