logoalt Hacker News

appplicationyesterday at 10:36 PM1 replyview on HN

DuckDB is more for analytics. I don’t think you’re going to find good options for a DB that can handle concurrent users without hosting it in some way server side. It’s certainly possible (think how some games create their own client servers for direct multiplayer) but honestly hosting Postgres or SQLite is ridiculously cheap, easy, and more importantly the standard approach to this issue.


Replies

hermitcrabyesterday at 10:50 PM

IIRC SQLite is in-process and says in it's documentation that it is not a client-server database.