Configuration - No queue storage

Hi,

I am a new to this excellent product and am trying to create a simple console app without any SQL dependency and just use in memory queue processing (not persisted). Is this possible or is there a dependency on a db?

Thanks!!

There is a Hangfire.MemoryStorage project you could use.

As far as I know, Hangfire requires some kind of persistent data storage to manage itself. SQL Express is free, and if you use the LocalDB option, very lightweight.

I suppose, since HF uses JSON all over the place, an argument could be made to use flat files (JSON data) to store data.

For the moment, gotta use a DB. Check out the documentation HERE.