Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Ilan
gt; > a feature would something like psutil or hredis, or even something like > supporting redis or postgres. > > In any case it should be clear that I need redis on the installation page > > On Sun, Jul 19, 2015 at 6:51 PM, Ilan Steemers > wrote: > >> both >>

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Ilan Steemers
both On Sun, Jul 19, 2015 at 5:48 PM, Avraham Serour wrote: > I don't get it, is redis a feature or dependency? > > On Sun, Jul 19, 2015 at 4:58 PM, Ilan wrote: > >> Thanks. I'm currently working on the 0.4.0 release that will add result >> groups. H

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Ilan
Thanks. I'm currently working on the 0.4.0 release that will add result groups. Hoping to release it in a few hours. On Sunday, July 19, 2015 at 3:55:47 PM UTC+2, Derek Pauley wrote: > > Looks very nice. > > On Friday, July 17, 2015 at 1:06:20 PM UTC-5, Ilan wrote: >>

A native Django multiprocessing task queue - feedback wanted

2015-07-17 Thread Ilan
About a month ago I started working on a multiprocessing task queue for Django. It is not supposed to be a Celery beater, but a simpler Django integrated alternative with similar performance. This is my first big open source project for Django and I want your feedback in this early stage. Have a

Re: Pip type error.

2013-05-01 Thread ilan
Brilliant ! I was using powershell. When I switched back to good old cmd.exe pip freeze worked fine On Saturday, July 21, 2012 9:00:50 AM UTC+3, Jauharul Fuady wrote: > > > > On Sunday, 11 March 2012 15:17:59 UTC+7, John W. wrote: >> >> I know it's weird to reply to myself, but just in case that s

Re: Accessing FK sets in model methods

2007-07-18 Thread Ilan
a colon ( : ) at the end of your if > 0 line. This is what python > is flagging as an error as far as i can see. > Ben > > On 18/07/07, Ilan <[EMAIL PROTECTED]> wrote: > > > > > > > You're correct I did have a extra space, but the original proble

Re: Accessing FK sets in model methods

2007-07-18 Thread Ilan
You're correct I did have a extra space, but the original problem was syntax error on the following line : if self.segment_set.count() > 0 so my question is : can I acess to FK queryset as described in http://www.djangoproject.com/documentation/db-api/#Backward in a model method thanks On 18 יול

Accessing FK sets in model methods

2007-07-18 Thread Ilan
Hi, My name is Ilan, and I kind of new working with Django. I have a question about model methods. I trying to write a model method which access ForeignKey FOO_set functionality Whoever it does not seems to pass the "syncdb" validation, because of invalid syntax Can someone point