logoalt Hacker News

gorjusborgtoday at 1:46 PM2 repliesview on HN

Only if you get there and need it.


Replies

z3ugmatoday at 1:58 PM

but it's so trivial to implement SQLite, in almost any app or language...there are sufficient ORMs to do the joins if you don't like working with SQL directly...the B-trees are built in and you don't need to reason about binary search, and your app doesn't have 300% test coverage with fuzzing like SQLite does

you should be squashing bugs related to your business logic, not core data storage. Local data storage on your one horizontally-scaling box is a solved problem using SQLite. Not to mention atomic backups?

show 4 replies
upmostlytoday at 1:49 PM

Exactly. And most apps don't get there and therefore don't need it.

show 1 reply