I receive this error whenever I run an application which requires the quick.db
Here's the error:
Asked
Active
Viewed 992 times
1 Answers
0
There's nothing preventing you from building the quick.db
dependency into your application but it will not work as expected. It uses sqlite
under the hood which will attempt to store your data in the file system. On Heroku, that file system is ephemeral and your data will be wiped at least once per day.

RangerRanger
- 2,455
- 2
- 16
- 36
-
I saw this a long time after you have posted it, but is there a workaround to this while still using quick.db? – SovietSeal Sep 03 '21 at 04:12