> > And, beyond that, there are plenty of non-critical tasks that applications > could easily offload until after a response has been sent - like saving > things into a cache or thumbnailing newly-uploaded images. > http://channels.readthedocs.org/en/latest/concepts.html#concepts
I mean this example sounds like celery to me. You don't want an image to maybe have a thumbnail generated. And you have no return value to the client when the thumbnail is generated. -Ben On Tue, Dec 15, 2015 at 3:41 PM, Shai Berger <[email protected]> wrote: > On Wednesday 16 December 2015 01:07:16 Ben Liyanage wrote: > > > > I get that the goal of this is for asynchronous web requests, but if it's > > generalized right it seems like it could cover doing any kind of work > > without the pressure of completing a web transaction in a timely fashion. > > > No, because Channels are designed to be non-reliable (each message is > delivered at most once), and if I understand correctly this is a key point > in > the design. Celery gives you much stronger delivery guarantees, > > Shai. > -- *Ben Liyanage *|* Software Engineer *|* Rentlytics, Inc.* Phone: (410) 336-2464 | Email: [email protected] 1132 Howard Street, San Francisco CA 94107 Visit our Website <http://www.rentlytics.com> | Watch our Video <http://youtu.be/Pe_9KE_fj34> -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CADgLBUOb8v0VozfcX%3D7t8_zgGznbqHU%3D57PZpoArP5%3DGC8yxQA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
