python 定时清理django 过期 session详解编程语言

import time, os, sched  
 
schedule = sched.scheduler(time.time, time.sleep)  
     
def perform_command(cmd, inc):  
     
    schedule.enter(inc, 0, perform_command, (cmd, inc))  
    os.system(cmd)  
         
def timming_exe(cmd, inc = 60):  
     
    schedule.enter(inc, 0, perform_command, (cmd, inc))  
     
    schedule.run()  
         
     
print("Clear up expire session by timer")  
os.chdir('D:/workspace/busymonkey') 
timming_exe("python manage.py clearsessions", 20)

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16589.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论