0

I receive this error whenever I run an application which requires the quick.db Here's the error: Error

Syntle
  • 5,168
  • 3
  • 13
  • 34
Brands ツ
  • 21
  • 1

1 Answers1

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