HangfireIO / Hangfire

An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
https://www.hangfire.io
Other
9.32k stars 1.69k forks source link

SqlCE support to enable proper Umbraco Cloud compatibility #1107

Open kasperskov909 opened 6 years ago

kasperskov909 commented 6 years ago

Keyword not supported: 'flush interval'. That's the error you get when you try to run Hangfire on SqlCE. As you may know, local Umbraco Cloud development is with SqlCE.

I would love to see Hangfire compatible with UC. I know this is not a bug as Hangfire doesn't support UC. This is a feature/enhancement suggestion. What would it take?

kasperskov909 commented 6 years ago

Update: Umbraco ditched SqlCE .sdf files. It's now a proper .mdf database file. Issue still stands though.

soreng commented 6 years ago

A workaround could be to use something like https://github.com/perrich/Hangfire.MemoryStorage/ - when it's just for local testing, long running schedules should not be a thing :)

burningice2866 commented 6 years ago

Or maybe implement your own Umbraco-specific storage on top of their API's?