▲ | degamad 5 days ago | ||||||||||||||||||||||||||||||||||||||||||||||||||||
> If you need to scale enough that it is a concern, then its not a good fit for your use case. If you need to scale writes. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | andersmurphy 5 days ago | parent [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
You can hit 40000-80000+writes/s with sqlite on a 10$ VPS just by batching transactions (i.e wrapping all inserts/updates in a single transaction every 100ms). This is easy to do at the application level, then you also avoid BUSY/LOCK. I'd argue writes scale better wtih sqlite than postgresql. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|