Google 应用程序引擎、任务队列

发布于 09-02 15:28 字数 58 浏览 6 评论 0原文

如何从任务队列中删除任务? Google App Engine任务队列是否在执行后将任务从队列中删除?

How can I remove a task from a task queue? Is Google App Engine Task Queue removes the task from the queue after it is executed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

南汐寒笙箫2024-09-09 15:28:32

任务队列API只指定了添加任务的函数。当它们完成时,它将删除它们。

但是,您可以使用管理控制台手动删除它们。

详细信息:http://code.google.com/appengine/ docs/python/taskqueue/overview.html#Managing_Task_Queues

The task queue API only specifies a function for adding tasks. It will remove them when they complete.

You can, however, manually remove them using the admin console.

Details: http://code.google.com/appengine/docs/python/taskqueue/overview.html#Managing_Task_Queues

不念旧人2024-09-09 15:28:32

当且仅当任务返回 HTTP 200 响应时,任务才会从队列中删除。对于任何其他响应,将重试直至成功执行。

正如大卫的回答所示,它们也可以手动删除。

A task is removed from the queue when it executes if and only if it returns an HTTP 200 response. For any other response, it will be retried until it successfully executes.

As David's answer indicates, they can also be manually removed.

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