ubuntu:使用Fork安排python脚本

时间:2017-05-18 06:36:07

标签: python linux ubuntu cron fork

我试图在Ubuntu 16.04中使用fork()在某个预定时间执行python脚本。在我阅读文档时,我没有遇到fork()中的日程安排选项。

  

fork()是否可以选择安排?

目前,我正在使用`CRON'来调用python脚本,但似乎CRON作业总是具有最低优先级。

  

在Ubuntu中安排执行大量数据库操作的日常操作的最佳选择是什么?

1 个答案:

答案 0 :(得分:0)

高级Python计划程序可以提供帮助:http://apscheduler.readthedocs.io/en/latest/

以下是使用它的示例代码:

from apscheduler.schedulers.blocking import BlockingScheduler

def some_job():
    print "Decorated job"

scheduler = BlockingScheduler()
scheduler.add_job(some_job, 'interval', hours=1) 
scheduler.start()