码迷,mamicode.com
首页 > Web开发 > 详细

MVC中使用Hangfire按秒执行任务

时间:2019-11-27 10:30:10      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:tree   https   queue   options   test   fir   proc   core   参数   

 

1、更新Hangfire版本到1.7.0,才支持使用按秒循环任务执行
RecurringJob.AddOrUpdate("test",()=>writeLog("每20秒执行任务"), "*/20 * * * * *");
2、
修改参数
var jobOptions = new BackgroundJobServerOptions
{
Queues = new[] { "critical", "test", "default" },
WorkerCount = Environment.ProcessorCount * int.Parse(Configuration["Hangfire:ProcessorCount"]),
ServerName = Configuration["Hangfire:ServerName"],
SchedulePollingInterval = TimeSpan.FromSeconds(1), //计划轮询间隔 支持任务到秒
};
 

MVC中使用Hangfire按秒执行任务

标签:tree   https   queue   options   test   fir   proc   core   参数   

原文地址:https://www.cnblogs.com/lyl6796910/p/11940201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!