niiyan's blog

niiyanの個人ブログ。

Google App Engine の cron に関するメモ

http://code.google.com/intl/ja/appengine/docs/python/config/cron.html より:

cron:
- description: daily summary job
  url: /tasks/summary
  schedule: every 24 hours
- description: monday morning mailout
  url: /mail/weekly
  schedule: every monday of month 09:00
  timezone: Australia/NSW
  • descrption: cron ジョブの説明
  • url: 呼び出す URL
  • schedule: cron のスケジュール

例: 毎日同じ時間(0 時)に実行

- description: daily same time
  url: /foo/bar
  schedule: every day of month 00:00
  timezone: Asia/Tokyo