An Alternative SQLite Storage for Hangfire.
This project was created by abandonment Hangfire.SQLite storage (https://github.com/wanlitao/HangfireExtension), as an alternative to use SQLite with Hangfire.
Is production ready? Yes
Install a package from Nuget.
Install-Package Hangfire.Storage.SQLite
This is how you connect to an SQLite instance
GlobalConfiguration.Configuration.UseSQLiteStorage();
services.AddHangfire(configuration => configuration
.UseSimpleAssemblyNameTypeSerializer()
.UseRecommendedSerializerSettings()
.UseSQLiteStorage());
This project is mainly based on Hangfire.LiteDB storage by @codeyu (https://github.com/codeyu/Hangfire.LiteDB)
If this project help you reduce time to develop, you can give me a cup of coffee :)
This project is under MIT license. You can obtain the license copy here.