The current storage implementation is a bunch of loose files on the filesystem.
Using SQLite can have the following benefits:
- improve robustness when multithreaded access is desired
- make the data easier to manage (as it will be a single file)
- potentially improve performance
The current storage implementation is a bunch of loose files on the filesystem.
Using SQLite can have the following benefits: