gpt4 book ai didi

python - Ubuntu : Schedule python scripts using Fork

转载 作者:太空宇宙 更新时间:2023-11-04 12:28:11 25 4
gpt4 key购买 nike

我正在尝试在 Ubuntu 16.04 中使用 fork() 在某个预定时间执行 python 脚本。在阅读文档时,我没有在 fork() 中遇到调度选项。

Is fork() having an option to schedule?

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

What would be the best possible option to schedule daily ops in Ubuntu which performs huge DB operations?

最佳答案

高级 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()

关于python - Ubuntu : Schedule python scripts using Fork,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44040297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com