Re: [Twisted-Python] job server project

2011-01-04 Thread Laurens Van Houtven
Note: I'm not David -- I was just clarifying Glyph's question. I'm not suggesting you should use either of those. If you are interested in things that look like with Twisted, I recommend - look at @inlineCallbacks -- it uses generators, not greenlet-style coroutines, but quite often it covers wha

Re: [Twisted-Python] job server project

2011-01-04 Thread Umut Aydin
I haven't heard of gevent nor evenlet. Thank you so much. On Tue, Jan 4, 2011 at 5:48 AM, Glyph Lefkowitz wrote: > > On Jan 3, 2011, at 6:47 PM, Laurens Van Houtven wrote: > >> AFAIK, no. It has a number of concurrency things: >> >> - gevent >> - eventlet >> - pools (threads and processes) >> >>

Re: [Twisted-Python] job server project

2011-01-03 Thread Glyph Lefkowitz
On Jan 3, 2011, at 6:47 PM, Laurens Van Houtven wrote: > AFAIK, no. It has a number of concurrency things: > > - gevent > - eventlet > - pools (threads and processes) > > No twisted, afaik. > > cheers, > lvh Well, sort of: eventlet uses the 'twistdr' hub by default, so you could probably use

Re: [Twisted-Python] job server project

2011-01-03 Thread Laurens Van Houtven
AFAIK, no. It has a number of concurrency things: - gevent - eventlet - pools (threads and processes) No twisted, afaik. cheers, lvh ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/

Re: [Twisted-Python] job server project

2011-01-03 Thread Glyph Lefkowitz
On Jan 3, 2011, at 4:52 PM, David Strauss wrote: > On Fri, 2010-12-31 at 14:35 +0200, Umut Aydin wrote: >> I just completed an article about writing a job server with Twisted >> Framework. It's also based on my job server project called Jobbar. >> >> http://umut.mobi/blog/2010/12/31/jobbar-distr

Re: [Twisted-Python] job server project

2011-01-03 Thread David Strauss
On Fri, 2010-12-31 at 14:35 +0200, Umut Aydin wrote: > I just completed an article about writing a job server with Twisted > Framework. It's also based on my job server project called Jobbar. > > http://umut.mobi/blog/2010/12/31/jobbar-distributed-job-server/ > > I'm still working on it. As long

Re: [Twisted-Python] job server project

2011-01-01 Thread Glyph Lefkowitz
On Dec 31, 2010, at 7:35 AM, Umut Aydin wrote: > Hello everybody Hello Umut! :) > I just completed an article about writing a job server with Twisted > Framework. It's also based on my job server project called Jobbar. > > http://umut.mobi/blog/2010/12/31/jobbar-distributed-job-server/ > > I'

[Twisted-Python] job server project

2010-12-31 Thread Umut Aydin
Hello everybody I just completed an article about writing a job server with Twisted Framework. It's also based on my job server project called Jobbar. http://umut.mobi/blog/2010/12/31/jobbar-distributed-job-server/ I'm still working on it. Happy new year. - Umut __

Re: [Twisted-Python] Job server

2010-12-21 Thread Umut Aydin
Hello I will write a README and INSTALL documents asap but I did not have anything about USAGE document in my mind. I will take care of it also. Thank you for your advice. Migrating a job during processing is not available yet but I think I can find a way to provide that within Multiple Job Handl

Re: [Twisted-Python] Job server

2010-12-21 Thread Yaroslav Fedevych
On Tue, Dec 21, 2010 at 1:40 PM, Umut Aydin wrote: > Hello everybody > > My job server is on progress and maybe you want to check it out. > Distribution part is ready but I still work on remote calls. As soon > as I get it done I ll write an article about building a job server > with twisted frame

[Twisted-Python] Job server

2010-12-21 Thread Umut Aydin
Hello everybody My job server is on progress and maybe you want to check it out. Distribution part is ready but I still work on remote calls. As soon as I get it done I ll write an article about building a job server with twisted framework. (I wrote an article about Apache Mina framework while des