Ask HN: Who uses SQLite database in production?
The massive advantages that we see are -
1. Extremely quick backups which run twice daily, since they are just file copies.
2. Very fast data integrity resolutions as we can quickly download the database and parse it for fixing invalid data.
The only downside I see is the extremely rare DB lock error since SQLite uses file based locking. But usually that's due to bad programming than anything else.
I was wondering if others are doing the same thing.
What advantages and drawbacks do you face?