HangFire 1.5.3
dotnet add package HangFire --version 1.5.3
NuGet\Install-Package HangFire -Version 1.5.3
<PackageReference Include="HangFire" Version="1.5.3" />
paket add HangFire --version 1.5.3
#r "nuget: HangFire, 1.5.3"
// Install HangFire as a Cake Addin #addin nuget:?package=HangFire&version=1.5.3 // Install HangFire as a Cake Tool #tool nuget:?package=HangFire&version=1.5.3
An easy and reliable way to perform fire-and-forget, delayed and recurring long-running, short-running, CPU or I/O intensive tasks inside ASP.NET application. No Windows Service / Task Scheduler required. Even ASP.NET is not required.
Backed by Redis, SQL Server, SQL Azure or MSMQ. This is a .NET alternative to Sidekiq, Resque and Celery.
http://hangfire.io/
Learn more about Target Frameworks and .NET Standard.
-
- Hangfire.Core (= 1.5.3)
- Hangfire.SqlServer (= 1.5.3)
- Microsoft.Owin.Host.SystemWeb (>= 3.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (28)
Showing the top 5 popular GitHub repositories that depend on HangFire:
Repository | Stars |
---|---|
elsa-workflows/elsa-core
A .NET workflows library
|
|
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
|
|
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 8 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
|
|
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
|
|
dotnetcore/osharp
OSharp是一个基于.Net6.0的快速开发框架,框架对 AspNetCore 的配置、依赖注入、日志、缓存、实体框架、Mvc(WebApi)、身份认证、功能权限、数据权限等模块进行更高一级的自动化封装,并规范了一套业务实现的代码结构与操作流程,使 .Net 框架更易于应用到实际项目开发中。
|
Version | Downloads | Last updated |
---|---|---|
1.5.3 | 7,856 | 11/6/2015 |
1.5.2 | 5,209 | 10/15/2015 |
1.5.1 | 533 | 10/14/2015 |
1.5.0 | 3,266 | 10/1/2015 |
1.4.7 | 377 | 10/1/2015 |
1.4.6 | 8,038 | 8/29/2015 |
1.4.5 | 9,540 | 7/24/2015 |
1.4.4 | 260 | 7/23/2015 |
1.4.3 | 13,165 | 5/27/2015 |
1.4.2 | 4,984 | 5/6/2015 |
1.4.1 | 7,473 | 4/14/2015 |
1.3.4 | 12,283 | 2/4/2015 |
1.3.3 | 1,414 | 1/28/2015 |
1.3.2 | 497 | 1/27/2015 |
1.3.1 | 2,749 | 1/13/2015 |
1.3.0 | 2,696 | 12/10/2014 |
1.2.2 | 1,997 | 11/24/2014 |
1.2.1 | 284 | 11/22/2014 |
1.2.0 | 968 | 11/17/2014 |
1.1.1 | 9,817 | 9/5/2014 |
1.1.0 | 1,118 | 9/3/2014 |
1.0.2 | 3,354 | 7/1/2014 |
1.0.1 | 232 | 6/30/2014 |
1.0.0 | 153 | 6/30/2014 |
0.9.1 | 536 | 6/12/2014 |
0.9.0 | 228 | 6/7/2014 |
0.8.3 | 190 | 5/23/2014 |
0.8.2 | 164 | 5/21/2014 |
0.8.1 | 134 | 5/17/2014 |
0.8.0 | 280 | 5/2/2014 |
0.7.5 | 185 | 4/10/2014 |
0.7.4 | 138 | 4/7/2014 |
0.7.3 | 126 | 4/4/2014 |
0.7.2 | 108 | 4/4/2014 |
0.7.1 | 124 | 4/1/2014 |
0.7.0 | 140 | 3/22/2014 |
0.6.2 | 135 | 1/28/2014 |
0.6.1 | 122 | 1/27/2014 |
0.6.0 | 118 | 1/27/2014 |
0.5.2 | 152 | 11/19/2013 |
0.5.1 | 134 | 11/12/2013 |
0.5.0 | 137 | 11/10/2013 |
0.3.0-alpha8 | 106 | 9/18/2013 |
0.2.0-alpha4 | 107 | 9/5/2013 |
0.1.0 | 239 | 9/4/2013 |
http://hangfire.io/blog/
1.5.3
Hangfire.SqlServer
* Fixed – "Cannot release the application lock" exception when using distributed locks.
1.5.2
* Fixed – `JobLoadException` when using interface method as a background job, appeared in 1.5.1.
1.5.1
* Fixed – `JobLoadException` during deserialization when a method defined in an inherited interface.
* Fixed – Unable to see enqueued jobs in Dashboard UI when using SQL Server queues.
* Fixed – Show alert box instead of an exception on Awaiting Jobs page.
1.5.0
Hangfire.Core
* Added – `IBackgroundProcess` interface that allows to implement custom background processes.
* Added – `BackgroundProcessingServer` class for creating a server instance with completely custom background processes.
* Added – Support for running multiple `BackgroundJobServer` instances in the same AppDomain without explicit server names.
* Added – `JobActivatorScope` class to support custom IoC scopes/lifetimes.
* Added – Allow to specify a custom queue for recurring jobs (by @maleet).
* Added – Allow to use CancellationToken type as a job method parameter.
* Added – It is now possible to query the storage in state applying filters.
* Added – Allow to pass custom filters to `BackgroundJobServer` via options.
* Added – Option to hide the "Back to site" link (by @dradovic).
* Changed – Server components and background processes now use `Task` with `TaskCreationOptions.LongRunning`.
* Changed – ServerIds are now generated without ServerName, server names are deprecated.
* Changed – Arguments Renderer now supports TimeSpan and DateTime (by @yngndrw).
* Changed – Minor improvements for Dashboard navigation (by @pwelter34).
* Changed – Worker does not process a job when a transition to the Processing state failed (by @yngndrw).
* Changed – `BackgroundJobClientException` is thrown instead of `CreateJobFailedException`.
* Changed – WorkerId is now auto-generated and based on a GUID.
* Changed – Use StackTraceFormatter package for marking-up stack traces (by @atifaziz).
* Changed – Updated Dashboard CSS to Twitter Bootstrap 3.3.5.
* Fixed – Prevent worker from fetching and processing a job on shutdown.
* Fixed – `TaskCanceledException` thrown from a job method leads to failed job as expected.
* Fixed – Make `DelayedJobScheduler` resilient to empty background job ids.
* Fixed – Logical error in SqlServerDistributedLockTimeout value check (by @Tom-Kelly).
* Fixed – `OverflowException` in Dashboard when job duration exceeds int.MaxValue (by @mavenius).
* Fixed – "More details" button in Dashboard changes to "Less details" when collapsed (by @pascalberger).
Hangfire.SqlServer
* Added – Ability to specify the schema for SQL Server job storage (by @ryanmwright).
* Added – `TransactionTimeout` option for configuring the `TransactionScope` timeout.
* Added – `DashboardJobListLimit` option to prevent full table scans in Dashboard.
* Changed – `SqlServerDistributedLock` class is now public.
* Changed – Use `rowlock` table hint in job fetch query to prevent escalation.
* Changed – Dramatically improved page load times in Dashboard.
* Changed – Instant re-queue for background jobs even after ungraceful shutdown.
* Changed – `JobQueue.Queue` and `Server.Id` column length increased to 50 and 100 respectively (by @maleet).
Hangfire.SqlServer.Msmq
* Added – Support for remote MSMQ queues through DTC transactions.