Add Hangfire vs Quartz.NET comparison sample - #2105
Open
vladimir-pecanac-main wants to merge 2 commits into
Open
Conversation
New dotnet-client-libraries/QuartzVsHangfire sample backing the Hangfire vs Quartz.NET article: the Hangfire side enqueues a fire-and-forget job and registers a recurring job against in-memory storage, and the Quartz.NET side builds a cron trigger and runs a job. Targets net10.0 with xunit tests.
Cover each comparison criterion with both sides: DI registration and startup, fire-and-forget vs immediate trigger, recurring cron jobs, storage configuration, automatic retries, and dashboard/monitoring.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new
dotnet-client-libraries/QuartzVsHangfiresample backing the Hangfire vs Quartz.NET comparison article.nightlyrecurring job against in-memory storage.0 0 2 * * ?) and runs a job.dotnet build+dotnet testgreen locally.Pins Hangfire.Core 1.8.24 and Quartz 3.19.1.