今天介紹在django中使用定時任務的兩種方式。
方式一: apscheduler
1)安裝:
pip install apscheduler
2)使用:
from apscheduler.scheduler import scheduler
from django.core.cache import cache
# 例項化
sched = scheduler()
# 每30秒執行一次
@sched.interval_schedule(seconds=30)
def sched_test():
"""測試-定時將隨機數儲存到redis中
:return:
"""seed = "123456789"
sa =
for i in range(4):
code = ''.join(sa)
cache.set("test_"+code, code)
3)啟動定時任務
# 啟動定時任務
sched.start()
方式二: django-crontab
安裝:
pip install django-crontab
'django_crontab',
)編寫定時函式:
import random
from django.core.cache import cache
def test():
"""測試-定時將隨機數儲存到redis中
:return:
"""seed = "123456789"
sa =
for i in range(4):
code = ''.join(sa)
cache.set("test_"+code, code)
4)編寫定時命令
django為專案中每乙個應用下的management/commands目錄中名字沒有以下劃線開始的python模組都註冊了乙個manage.py命令, 自定義乙個命令如下: 必須定義乙個繼承自basecommand的command類, 並實現handle方法。
import random
from django.core.management.base import basecommand
from django.core.cache import cache
class command(basecommand):
"""自定義命令
"""def handle(self, *args, **options):
"""自定義命令
:return:
"""seed = "123456789"
sa =
for i in range(4):
code = ''.join(sa)
cache.set("test_"+code, code)
定義完成後,執行python manage.py test, 會執行handle()函式
在settings.py中增加配置
# 執行定時函式
cronjobs =
# 執行定時命令
cronjobs = [
('*/1 * * * *', 'django.core.management.call_command', ['test'], {}, '>> /home/python/test.log'),
]
上面主要有3個引數,分別表示: 定時任務執行時間(間隔), 待執行定時任務, 將定時任務的資訊追加到檔案中
對於熟悉linux中定時任務crontab的同學可能對上面第乙個引數的語法很親切。上面表示每隔1分鐘執行一次**。
linux中的定時任務crontab的語法如下:
* * * * * command
分鐘(0-59) 小時(0-23) 每個月的哪一天(1-31) 月份(1-12) 週幾(0-6) shell指令碼或者命令
例子:
0 6 * * * commands >> /tmp/test.log # 每天早上6點執行, 並將資訊追加到test.log中
0 */2 * * * commands # 每隔2小時執行一次
有興趣的小夥伴可以深入研究下linux的crontab定時任務。
新增並啟動定時任務
python manage.py crontab add
其它命令:
python manage.py crontab show: 顯示當前的定時任務``python manage.py crontab remove: 刪除所有定時任務
今天的定時任務就說到這裡,有錯誤之處,歡迎交流指正! django定時任務
網上很多資料都是比較舊的,不同的版本使用上存在差異,最好的方式是,根據使用的版本檢視官方資料 任務執行結果 安裝 pip install django crontab pip install apscheduler pip install django apscheduler pip install...
django 實現定時任務
的首頁頻繁被訪問,為了提公升訪問速度,除了我們之前已經學過的使用快取技術外,還可以使用頁面靜態化技術。頁面靜態化即將動態渲染生成的頁面結果儲存成html檔案,放到靜態檔案伺服器中。使用者訪問的時候訪問的直接是處理好之後的html靜態檔案。對於頁面中屬於每個使用者展示不同資料內容的部分,可以在使用者請...
django實現定時任務
目的 解決執行django專案的時候一起執行自己寫的py檔案 一 類別 linux celery和django crontab外掛程式 windows apscheduler django apscheduler,3.註冊後資料遷移 python manage.py migrateimport ti...