Question: If a view saves a model that has a post-save hook, does the view
return after the post-save hook has completed? Or does the view return and
the hook runs in the background like a celery task would?
On Friday, November 29, 2013 10:52:04 AM UTC-8, Robin Lery wrote:
>
> This may be a l
oh..ok. Thank you so much! :)
Its really great to learn something new.
On Sun, Dec 1, 2013 at 7:42 AM, Avraham Serour wrote:
> No, you can run celery from the same server, the problem is you won't be
> able to do that on many cheap shared hostings
>
>
> On Sat, Nov 30, 2013 at 7:35 PM, Robin
No, you can run celery from the same server, the problem is you won't be
able to do that on many cheap shared hostings
On Sat, Nov 30, 2013 at 7:35 PM, Robin Lery wrote:
> Thank all so much for you replies. Just one more question though. Does
> this means Celery needs a different server?
>
>
>
Thank all so much for you replies. Just one more question though. Does this
means Celery needs a different server?
On Sat, Nov 30, 2013 at 12:41 AM, Carlos Daniel Ruvalcaba Valenzuela <
clsdan...@gmail.com> wrote:
> Signals are like events, for example, when the ORM has done an update.
> Celery
Signals are like events, for example, when the ORM has done an update.
Celery is more like a Task queue, you define code to execute certain task,
load it on celery task server which is running separately from your django
process, then when you need to execute it in the background you tell it,
which
The easiest answer I could give is that django signals are like hooks.
Something you wish to preform AFTER or BEFORE some model action. Like you
wish to adjust account balance on model save. Than you would use post_save
builtin django signal.
Celery is here to handle task in background. Like you w
This may be a lame question, but I am really confused with these two. I
know *signals* are used to do some task when something has happened. But
what about celery? In the documentation it says:
*Celery is an asynchronous task queue/job queue based on distributed
message passing.*
Will someon
7 matches
Mail list logo