官方文档在这里:http://sae.sina.com.cn/doc/python/cron.html
就是通过在config.yaml文件中添加Cron段,例如:
cron:
- description: timing_task
url: /on_time
schedule: "*/5 * * * *"
代表每5分钟以get方式访问/on_time这个链接。
还可以结合sae中的Taskqueue服务把大任务分成小任务,因为sae对于每次访问有时间限制,不能超过300秒。
提醒:冒号后面记得留一个空格!
sae Python下设置定时任务,布布扣,bubuko.com
原文地址:http://blog.csdn.net/tigerstudent/article/details/26746971