Skip to content

Aouzgaga/Hangfire.Tags.MemoryStorage

Repository files navigation

Hangfire.Tags.MemoryStorage

Add tags (https://github.com/face-it/Hangfire.Tags) to Hangfire backgroundjobs stored in memory (https://github.com/perrich/Hangfire.MemoryStorage).

In .NET Core's Startup.cs:

public void ConfigureServices(IServiceCollection services)
{
    services.AddHangfire(config =>
    {
        config.UseMemoryStorage();
        config.UseTagsWithMemory();
    });
}

Otherwise,

GlobalConfiguration.Configuration
    .UseTagsWithMemory()
    .UseMemoryStorage("connectionSting");

About

Add tags to Hangfire backgroundjobs stored in memory

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages