标签:add app reserve nuget rtu das serve core 延迟任务
Hangfire可用作任务调度,类似延迟任务、队列任务、批量任务和定时任务等。
一、nuget Hangfire包
找到Hangfire.AspNetCore和Hangfire.SqlServer包,可以在nuget面板中找到或直接像如下方式安装:
Install Package Hangfire.AspNetCore
Install Package Hangfire.SqlServer
二、在Startup.cs文件中加入以下代码:
1.在ConfigureServices方法中加入services.AddHangfire();
2.在Configure方法中加入如下方法:
app.UseHangfireServer();
app.UseHangfireDashboard();
标签:add app reserve nuget rtu das serve core 延迟任务
原文地址:https://www.cnblogs.com/williamwsj/p/9042510.html