#AskFedi: please recommend me (open-source) relational databases that are easy to run and *do not* use SQL.
(ORMs are not an acceptable solution, I am looking for something that is designed from the start to not use SQL)
@joepie91 I am not aware of any *relational* databases that don't use SQL. There are graph databases that one can do equivalent things with, I guess, like Steve Dekorte's VertexDB. And CouchDB is a document database, but it can do some relational-like things too.
@freakazoid I'd be fine with a graph database, as long as it has sufficient performance on relational tasks (comparable to something like PostgreSQL), and offers a similar set of guarantees - thinking of things like referential integrity and 'proper' transactions.
Do either of those meet those goals? The performance doesn't need to be exactly like PostgreSQL (as that has been seeing optimization for a long time) but also not so slow that it's only really useful in an academic setting :p
@joepie91 Almost certainly not. There aren't that many serious database people in the world, so I would actually be surprised if such a thing existed. Having worked in the NoSQL industry at its genesis, I can tell you those folks aren't serious database people. Maybe some have gotten on board since then, but they're also not open source.
PostgreSQL is basically *the* relational database, open source or not, from what I can tell.
@freakazoid Definitely looking for something OLTP, in the vast majority of cases