谷歌应用程序引擎任务队列示例
目前,我尝试使用任务队列。但我没有看到关于此事的任何完整样本。
所以请给我一些用 python 编写的谷歌应用程序引擎中的任务队列示例。
Currently, i try to working with task queue. But i don't see any complete sample on this matter.
So please give me some sample of task queue in google app engine, written in python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
import:
定义并运行:
url 是导致代码在队列中运行的 RequestHandler
params 可以是常规的 url 参数
import:
define and run:
url is the RequestHandler that leads to the code to run in the queue
params can be regular url params
Google 文档中的示例简单但完整。 http://code.google.com/appengine/docs/python/taskqueue /概述.html
The example in Google's documentation is simple but complete. http://code.google.com/appengine/docs/python/taskqueue/overview.html