HangFire – Reliable and transparent background job processing for ASP.NET
1–10 of 14 posts
Re: HangFire – Reliable and transparent background job processing for ASP.NET
#2Re: HangFire – Reliable and transparent background job processing for ASP.NET
#3Re: HangFire – Reliable and transparent background job processing for ASP.NET
#4How is this any different than using MSMQ?
Re: HangFire – Reliable and transparent background job processing for ASP.NET
#5I had settled on the later as I wanted to avoid the complicated configuration of WCF, if possible, and just wanted a simple, reliable, and scalable way, to queue messages and process them. Ideally, I wanted a way to host/launch the worker processes from the web app to avoid complicating the development environment by having to install and run separate processes (Windows Service).
I will definitely be looking at this project today and putting it through a PoC.
Update: Forgot to mention ServiceStack in list of frameworks considered.
Re: HangFire – Reliable and transparent background job processing for ASP.NET
#6This post could not have come at a better time! I literally spent the better part of yesterday researching best practices for queueing jobs from ASP.NET (WEB API) hosted on Windows Server, not Azure. I was considering NetMSMQ based WCF, Windows Service Bus 1.1, NServiceBus, MassTransit, ServiceStack, Windows Azure Pack, Redis or RabbitMQ hosting Worker Processes as Windows Services. I had settled on the later as I wa…
Re: HangFire – Reliable and transparent background job processing for ASP.NET
#7Re: HangFire – Reliable and transparent background job processing for ASP.NET
#8This post could not have come at a better time! I literally spent the better part of yesterday researching best practices for queueing jobs from ASP.NET (WEB API) hosted on Windows Server, not Azure. I was considering NetMSMQ based WCF, Windows Service Bus 1.1, NServiceBus, MassTransit, ServiceStack, Windows Azure Pack, Redis or RabbitMQ hosting Worker Processes as Windows Services. I had settled on the later as I wa…
You will inevitably end up with a separate Windows service, mainly for maintanability reasons.
Re: HangFire – Reliable and transparent background job processing for ASP.NET
#9How is this any different than using MSMQ?
I've wanted something like this for a very long time.
Re: HangFire – Reliable and transparent background job processing for ASP.NET
#10How is this any different than using MSMQ?