Google 应用程序引擎、任务队列
如何从任务队列中删除任务? 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 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
任务队列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