Google App Engine:使用 Cron for Python 计划任务

发布于 2024-12-12 08:08:28 字数 356 浏览 0 评论 0原文

我已阅读此处的手册: http://code.google.com/appengine/docs/python/config /cron.html

但我想在某些特定时间执行一项任务:

- description: do this cron
  url: /do-this-cron
  schedule: every day 08:15,12:15,16:15

这合法吗?

我还没有看到任何其他时间用逗号分隔的例子。

I have read the manual here:
http://code.google.com/appengine/docs/python/config/cron.html

But I want to do a task at some specific times:

- description: do this cron
  url: /do-this-cron
  schedule: every day 08:15,12:15,16:15

Is this legit?

I havent seen any other examples where times are seperated by comma.

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

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

发布评论

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

评论(1

请爱~陌生人 2024-12-19 08:08:28

不,计划格式不支持逗号分隔时间。你可以这样做:

- description: do this cron
  url: /do-this-cron
  schedule: every 4 hours from 08:15 to 16:15

No, the schedule format doesn't support comma-separated times. You can do this instead:

- description: do this cron
  url: /do-this-cron
  schedule: every 4 hours from 08:15 to 16:15
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文