I’m using Hangfire in a ASP.NET MVC5 application. Did the configurations as described in the documentation.
Everything works fine, but I can notice that it causes application performance issue. Worth to mention that it’s also blocking Glimps to load correctly.
After inspecting the code, I removed these lines of code under Configuration in OWIN Startup class and application starts to perform correctly, also Glimps loads correctly.
app.UseHangfire(config =>
{
config.UseSqlServerStorage("AppContext");
config.UseServer();
});