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

时间:2011-10-29 22:42:57

标签: python google-app-engine cron

我在这里阅读了手册: 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

这是合法的吗?

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

1 个答案:

答案 0 :(得分:6)

不,日程表格式不支持以逗号分隔的时间。你可以这样做:

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