我正在创建一个控制台应用程序,我需要在其中并行执行某些任务,因此我尝试使用Hangfire.Net。
有人可以建议我如何在.NET Core控制台应用程序中配置Hangfire.Net吗?
亲切的问候,
Jatinder
答案 0 :(得分:1)
.Net Core中的Hangfire配置非常好,这将把它存储在数据库中。
GlobalConfiguration.Configuration.UseSqlServerStorage("connection_string");
using (var server = new BackgroundJobServer())
{
Console.WriteLine("Hangfire Server started. Press any key to exit...");
Console.ReadKey();
}
代码摘自documentation