Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何在 python 中为 GAE 安排任务队列,以便任务只运行一次?我考虑过使用 cron,但谷歌搜索并没有发现任何只运行一次的配置。但是我确实找到 了这篇文章。有谁知道我如何在 Python 中为 GAE 完成此操作。
谢谢。
使用task_retry_limit。
taskqueue.Task( url='/process/url, params={'varname': 'value'}, method='POST', retry_options=taskqueue.TaskRetryOptions(task_retry_limit=1)).add()