Background Tasks Made Easy with Hangfire and ASP.NET Core
Hangfire is a .NET library that makes it really easy to adding background tasks to your .NET app. It supports one-off "fire and forget" tasks, as well as scheduling recurring tasks. On top of that it supports persistence, so all of your tasks will co...
samwalpole.com6 min read
Thiago Loureiro
Architect :)
Hi! nice article! Just one note, there's a "typo" in your code
Should be UseMemoryStorage, correct?
services.AddHangfire(c => c.UserMemoryStorage());