python命令中的不工作线程(管理/命令)

时间:2018-07-02 07:11:17

标签: django multithreading python-3.x apscheduler

app/management/commands/command_scheduler.py

class Command(BaseCommand):

    def handle(self, *args, **kwargs):
        insert()
        import threading
        _thread = threading.Thread(target=insert)
        _thread.setDaemon(True)
        _thread.start()

这是简单的测试代码(我正在使用Apscheduler,BackgroundScheduler插入了DB,但未执行。)

请回复。

0 个答案:

没有答案