以目前的格式,Google App Engine的Cron允許"The shortest time between runs of a task that can be specified is 1 minute."我有一個應用程序,我希望它每10秒運行一次任務。有沒有解決方法?Google App Engine 1分鐘cron限制的任何解決方法?
2
A
回答
2
取決於有多少擊中了你的應用程序獲得(和如何一致他們),你可以使用「芒的cron差」的方法..
在每個頁面加載,你是否最後一次執行時間爲> = 10秒前 - 如果是這樣,觸發一個函數(通過調用函數內聯,或者可能觸發真正的cron URL?)
除此之外 - 目前 - 沒有。直到後臺任務被執行,或者cron限制被改變。
編輯:的Task Queue(後臺處理)功能已實現!
1
也許經過9秒的處理,你可以調用又一個從cron本身的cron URL?
不知道如何與他們的使用條款相沖突。
4
如果您耐心等待,Task Queue API將會很快出來,這將爲執行任務提供任意延遲。
相關問題
- 1. Google App Engine的1分鐘cron限制
- 2. Google App Engine cron的頻率超過1分鐘
- 3. Google App Engine - Cron保持活動限制
- 4. 如何解決Google App Engine的10GB限制?
- 5. Google App Engine Cron PHP
- 6. Google App Engine Python Cron
- 7. Google App Engine - 任務隊列與Cron Jobs
- 8. Google App Engine - Cron或任務隊列?
- 9. Google App Engine Python Cron Job
- 10. 如何解決Java.io.FileOutputStream是Google App Engine中的受限類
- 11. 使用java.io的Google App Engine限制?
- 12. Google App Engine上的域限制認證
- 13. Google App Engine上的cron作業
- 14. Google App Engine上的Cron作業
- 15. Google App Engine中任務隊列的時間限制
- 16. Google App Engine實體組寫入限制
- 17. Google App Engine和dos.xml
- 18. ReferenceProperty未能解決 - App Engine
- 19. Cron文件 - 禁止訪問(Google App Engine)
- 20. Google App Engine Cron時間表和長度
- 21. Google App Engine Profiler
- 22. Google App Engine,任務隊列
- 23. Google App Engine任務隊列
- 24. Google App Engine - 死鎖?
- 25. Google App Engine APNS
- 26. Google App Engine的任何Intranet加速器?
- 27. Google App Engine SDK urlfetch for Ubuntu中的openssl bug的解決方法12.04
- 28. Google App Engine
- 29. 如何在Google App Engine中運行腳本超過10分鐘
- 30. Google App Engine vs Heroku
上述方法的一個警告:用戶在代碼執行完畢之前不會獲取生成的頁面,因此在後臺執行cron作業可能會導致用戶明顯放緩。 – 2009-06-11 07:45:46