Azure WebJob

#Something about Azure WebJob ##Timer triggered job - 可以使用 'TimerTrigger' 屬性來設定,省去 Azure Scheduler Job Collections 服務的成本,當然前提是這個 trigger 是不需要後台或 OP 更改,比較屬於 OS cron job 的那種型式。 - 要拿掉 WebJob template 中屬於 continuous job 的設定,如下: ```=clike // The following code ensures that the WebJob will be running continuously //var host = new JobHost(config); //host.RunAndBlock(); ```

留言

這個網誌中的熱門文章

修改Skype存放對話記錄、檔案的資料夾位置

[C# .Net] 因應資料庫Byte長度,修改中英混雜的字串長度

[C# .Net] 是否需要用 BufferedStream 當做 FileStream 的緩衝?