MoienTajik / AspNetCore-Developer-Roadmap

Roadmap to becoming an ASP.NET Core developer in 2024

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is Quartz.NET not recommended in asp.net core for scheduling job?

WeihanLi opened this issue · comments

Is Quartz.NET not recommended in asp.net core for scheduling job? If so, can you explain the reason why
it's not recommended?

Yes, It's not recommended. There are a lot of better choices for job scheduling like HangFire, Fluent-Scheduler, Coravel. Quartz is too complicated than other ones and I see a lot of people that they agree with this.

OK, Thanks for your reply.