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
I'm using SqliteCache for a project where the software downloads PDF files and convert them to images. The images are cached using SqliteCache.
Thus the database grows a lot with the usage. Although I can clear the cache, how sqlite works make that, not using VACUUM, the size of the database is not reduced once the cache is cleared.
One option is to run the sqlite database with the auto_vacuum=true or, the add the possibility to execute the VACUUM sql sentence after the clear of the cache, at least as an option.
Thanks
The text was updated successfully, but these errors were encountered:
Hi
I'm using SqliteCache for a project where the software downloads PDF files and convert them to images. The images are cached using SqliteCache.
Thus the database grows a lot with the usage. Although I can clear the cache, how sqlite works make that, not using VACUUM, the size of the database is not reduced once the cache is cleared.
https://www.sqlite.org/lang_vacuum.html
One option is to run the sqlite database with the auto_vacuum=true or, the add the possibility to execute the VACUUM sql sentence after the clear of the cache, at least as an option.
Thanks
The text was updated successfully, but these errors were encountered: