谷歌应用程序引擎任务队列示例

发布于 2024-11-03 07:14:11 字数 83 浏览 0 评论 0原文

目前,我尝试使用任务队列。但我没有看到关于此事的任何完整样本。

所以请给我一些用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮世清欢 2024-11-10 07:14:11

import:

from google.appengine.api import taskqueue

定义并运行:

taskqueue.add(url='/service', params={'user': user}, method="GET")

url 是导致代码在队列中运行的 RequestHandler

params 可以是常规的 url 参数

import:

from google.appengine.api import taskqueue

define and run:

taskqueue.add(url='/service', params={'user': user}, method="GET")

url is the RequestHandler that leads to the code to run in the queue

params can be regular url params

只是一片海 2024-11-10 07:14:11

The example in Google's documentation is simple but complete. http://code.google.com/appengine/docs/python/taskqueue/overview.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文