Anonymous
7/21/2025, 12:41:06 AM
No.105972247
[Report]
>>105972292
>>105973622
>>105974119
>>105975135
>>105976632
Been seeing a lot of talk about SQLite being a good database
SQLite is very limited because of its threading model, imo it's not usable outside of the single app model where you have a single user. It lacks robust concurrency, doesn't scale well under high write loads, and can become a bottleneck in multi-user or web environments. If you are thinking about using it just go with a reliable DB like Postgres or mySQL.