#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)
@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 If you're looking for an OLAP-type store instead of OLTP, there's Cassandra and Hive, though. And there's Hbase for OLTP, but I think that one is SQL.
@freakazoid Definitely looking for something OLTP, in the vast majority of cases
@joepie91 Actually I guess Cassandra can do OLTP as well. It's just column-oriented instead of row-oriented. But it's meant to be distributed, so it's not nearly as easy to set up as pgsql.
@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.