-
Using SQLite as Storage for Web Server Static Content – Internal Tools Deployment Platform | Clace
Notes
For Clace, the decision was made to use SQLite for app files storage instead of using the file system. The reasoning was mainly to be able to do atomic version changes. When updating an app, since there could be lots of files being updated, using a database would allow all changes to be done atomically in a transaction. This would prevent broken web pages from being served during a version change.
Unfurl