Discussion:
Celery
Ujj
2011-03-28 19:26:39 UTC
Permalink
Just curious if there is a connector for Celery or how people are
doing background processing using Bottle?

Thanks.
Marcel Hellkamp
2011-03-29 09:44:36 UTC
Permalink
Post by Ujj
Just curious if there is a connector for Celery or how people are
doing background processing using Bottle?
I am not sure what you mean with "connector". What do you want to do and
why do you think Bottle applications are different from any other
program in using Celery?
Chukwudi Nwachukwu
2014-05-02 14:23:16 UTC
Permalink
Hello @Marcel,

Please, could you give an example that could help one decipher the method
fetch(), as written in the documentation :

@route('/fetch')def fetch():
body = gevent.queue.Queue()
worker = SomeAsyncWorker()
worker.on_data(body.put)
worker.on_finish(lambda: body.put(StopIteration))
worker.start()
return body



Doing so will help a beginner to forge ahead from there, thanks.
Post by Marcel Hellkamp
Post by Ujj
Just curious if there is a connector for Celery or how people are
doing background processing using Bottle?
I am not sure what you mean with "connector". What do you want to do and
why do you think Bottle applications are different from any other
program in using Celery?
--
--
You are member of the "bottlepy" group at google groups.
See http://groups.google.de/group/bottlepy for mailing list options.
See http://bottlepy.org/ for news and documentation.

---
You received this message because you are subscribed to the Google Groups "bottlepy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bottlepy+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...