You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Litedb 5 now creates a dbname-log.db file. Hangfire.LiteDB appears to not properly clean up litedb resources, so the log file persists after program termination. I suspect some Dispose call is getting lost at some point. From trying to open the actual db in LiteDB Studio, it looks like the content is never written to the real db, only to the forward log.
This occurs with the console app in the samples folder, as a quick demo of the issue.
The text was updated successfully, but these errors were encountered:
That's not a problem of this library. LiteDB's Checkpoint method needs to be called manually, possibly with some schedule or so depending on your application needs.
Litedb 5 now creates a dbname-log.db file. Hangfire.LiteDB appears to not properly clean up litedb resources, so the log file persists after program termination. I suspect some Dispose call is getting lost at some point. From trying to open the actual db in LiteDB Studio, it looks like the content is never written to the real db, only to the forward log.
This occurs with the console app in the samples folder, as a quick demo of the issue.
The text was updated successfully, but these errors were encountered: