Re: [Stackless] multiprocessing module and stackless threads

2014-01-04 Thread xiscu
You can find it on bitbucket: https://bitbucket.org/stackless-dev/stacklesslib The link to the stackless site from there is broken as is coded as http://www.stackless/com Regards, xiscu ___ Stackless mailing list Stackless@stackless.com

Re: [Stackless] multiprocessing module and stackless threads

2014-01-04 Thread Richard Tew
Thanks for mentioning it. Fixed. On 1/5/14, xiscu xi...@email.de wrote: You can find it on bitbucket: https://bitbucket.org/stackless-dev/stacklesslib The link to the stackless site from there is broken as is coded as http://www.stackless/com Regards, xiscu

Re: [Stackless] multiprocessing module and stackless threads

2014-01-03 Thread Kristján Valur Jónsson
Python Mailing List Subject: Re: [Stackless] multiprocessing module and stackless threads hmm. I am seeing some strange things (using mac os 10.9) When i do a patch all I got a error from the Django app, they apparently use the threading._Event class that isn't in the monkeyed version. I worked

Re: [Stackless] multiprocessing module and stackless threads

2014-01-02 Thread Richard Tew
Ah, that's interesting. It looks like we need to make channels work interprocess. Cheers, Richard. On 1/2/14, Nike stackless@internike.com wrote: If it can be of any interest to you, a while ago I had assembled a small POC to have cross-process-channels :

Re: [Stackless] multiprocessing module and stackless threads

2014-01-02 Thread Kristján Valur Jónsson
Sent: 2. janúar 2014 07:53 To: The Stackless Python Mailing List Subject: Re: [Stackless] multiprocessing module and stackless threads Ah, that's interesting. It looks like we need to make channels work interprocess. Cheers, Richard. On 1/2/14, Nike stackless@internike.com wrote

Re: [Stackless] multiprocessing module and stackless threads

2014-01-02 Thread Richard Tew
stackless@stackless.com Cc: Date: Thu, 2 Jan 2014 11:58:39 +1300 Subject: Re: [Stackless] multiprocessing module and stackless threads If your web server uses non-blocking IO, then it shouldn't be necessary to have two schedulers. I imagine with Django, you would monkeypatch it via

Re: [Stackless] multiprocessing module and stackless threads

2014-01-02 Thread Robert Babiak
-- Forwarded message -- From: Richard Tew richard.m@gmail.com To: The Stackless Python Mailing List stackless@stackless.com Cc: Date: Thu, 2 Jan 2014 11:58:39 +1300 Subject: Re: [Stackless] multiprocessing module and stackless threads If your web server uses non-blocking IO

Re: [Stackless] multiprocessing module and stackless threads

2014-01-02 Thread Robert Babiak
: Date: Thu, 2 Jan 2014 11:58:39 +1300 Subject: Re: [Stackless] multiprocessing module and stackless threads If your web server uses non-blocking IO, then it shouldn't be necessary to have two schedulers. I imagine with Django, you would monkeypatch it via stacklesslib and it would then work

[Stackless] multiprocessing module and stackless threads

2014-01-01 Thread Robert Babiak
I have a question. Is it possible to use the multi processing module and stackless together? What i would like to do is have my application start a second process to handle the web server side of things, and the main thread control the main display. Can the two communicate via channels, or is

Re: [Stackless] multiprocessing module and stackless threads

2014-01-01 Thread Richard Tew
If your web server uses non-blocking IO, then it shouldn't be necessary to have two schedulers. I imagine with Django, you would monkeypatch it via stacklesslib and it would then work in a stackless-compatible non-blocking fashion. Stackless supports per-thread schedulers, and explicitly

Re: [Stackless] multiprocessing module and stackless threads

2014-01-01 Thread Nike
If it can be of any interest to you, a while ago I had assembled a small POC to have cross-process-channels : http://internike.com/mp_stackless.html Nike On 01/01/2014 08:42 PM, Robert Babiak wrote: I have a question. Is it possible to use the multi processing module and stackless together?