Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imdesai00/hangfire_jobs
Hangfire is a framwok that use to schedule job automatically. you can use any db with it it will generate all its table bydefault jyou just need to specify the connection string.
https://github.com/imdesai00/hangfire_jobs
hangfire hangfire-dotnet-core hangfire-manual-jobs
Last synced: 16 days ago
JSON representation
Hangfire is a framwok that use to schedule job automatically. you can use any db with it it will generate all its table bydefault jyou just need to specify the connection string.
- Host: GitHub
- URL: https://github.com/imdesai00/hangfire_jobs
- Owner: imdesai00
- Created: 2024-05-15T12:01:29.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-17T05:44:16.000Z (8 months ago)
- Last Synced: 2024-11-06T23:18:23.764Z (2 months ago)
- Topics: hangfire, hangfire-dotnet-core, hangfire-manual-jobs
- Language: C#
- Homepage:
- Size: 2.58 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hangfire Task Scheduler
Welcome to the Hangfire Task Scheduler project! This repository contains a powerful and flexible task scheduling solution built using Hangfire. Hangfire is an open-source framework that allows you to perform background processing in .NET and .NET Core applications with ease.
## Features- Recurring Jobs: Schedule jobs to run at specified intervals (e.g., daily, weekly).
- Delayed Jobs: Queue tasks to be executed after a set period.
- Continuous Jobs: Trigger tasks based on certain conditions or events.
- Real-Time Monitoring: Track the status and progress of your jobs with Hangfire's built-in dashboard.
- Automatic Retries: Handle job failures gracefully with configurable retry policies.
- Scalability: Distribute tasks across multiple servers for enhanced performance and reliability.## Deployment
To deploy this project run
```bash
git clone https://github.com/yourusername/hangfire-task-scheduler.git
cd hangfire-task-scheduler
``````bash
"ConnectionStrings": {
"HangfireConnection": "your-database-connection-string"
}```
```bash
dotnet run```
## Acknowledgements
- Hangfire for the fantastic background job processing framework.
- All contributors to this project for their hard work and dedication.