Questions tagged [hangfire]

Hangfire is an open-source framework that helps you to create, process and manage your background jobs in .NET Framework and .NET Core.

Hangfire is an open-source framework that helps you to create, process and manage your background jobs in .NET Framework and .NET Core.:

  • mass notifications/newsletter
  • batch import from xml, csv, json
  • creation of archives
  • firing off web hooks
  • deleting users
  • building different graphs
  • image/video processing
  • purge temporary files
  • recurring automated reports
  • database maintenance

Background job type support:

  • Single use
  • Delayed
  • Recurring
  • Continuations

Persistent Storage via SQLServer, Redis, PostgreSQL, mongoDB or CompositeC1.

Hangfire is a .NET Framework alternative to Sidekiq, Resque, and delayed_job.

http://hangfire.io/

1297 questions
-2
votes
1 answer

Configure "Hangfire.Net" in .NET Core console application?

I am creating a console application in which I need to perform some tasks in parallel so I am trying to use Hangfire.Net. Can anyone please suggest me how to configure Hangfire.Net in .NET Core console application?
Jatinder Singh
  • 197
  • 3
  • 12
-2
votes
1 answer

hangfire is not running when i deploy my asp.net mvc-5 web application on iis 7.5

I am working on an asp.net mvc-5 web application. and i install the hangfire tool inside my web application using nuget tool. https://www.nuget.org/packages/Hangfire/ Then i create the following startup.cs class, to call a method each minute as…
John John
  • 1
  • 72
  • 238
  • 501
-3
votes
0 answers

Hangfire High CPU Usage , High latency

We use Hangfire 1.8.5. We have 3 physical servers, separate for sql server, Hangfire dashboard and windows service for hangfire background server. Windows service server has 12 Processor and we set 36 background workers. We have 30 recurring jobs…
-3
votes
1 answer

Hangfire - deploy while site is running doesnt reload the app c# asp.net mvc

I gather this might be a general asp.net question as well. I'm running hangfire and we have noticed that when we publish the app to the site that is acting as a container for hangfire, the deploy causes the app to stop running and the app never…
user3086298
  • 290
  • 1
  • 4
  • 14
-3
votes
1 answer

How does HangFire executes the methods?

I've been trying to figure out how hangfire executes the enqueued jobs but I didn't manage to find an explanation anywhere. Could some please explain how does hangfire invoke the methods? Update: I went through the documentation for hangfire but I…
PinHead877
  • 63
  • 6
-3
votes
1 answer

Best method for sending bulk sms and email. Whether a cron or a scheduler service

I want to send Email and SMS in bulk in c# MVC. So, method would be better, cron in a web application or separate scheduler service for it? I have a web application running already. So, should I integrate the cron in the web app itself or create a…
Rahul Mahadik
  • 794
  • 11
  • 19
1 2 3
86
87