NoSQL: How Would We Query Such a Database Without Wasting Time With Ugly SQL?

| | bookmark | email

How Would We Query Such a Database Without Wasting Time With Ugly SQL?

How would we query such a database without wasting time with ugly SQL? We would need an API that will let us define our table schema and then allow us to craft queries using simple abstractions like collection maps, filter, joins, etc. I don't mean a heavyweight ORM solution either. If we are after simplicity, we'd better forgo dealing with object mappings and the complexity they bring. All we want is a hassle-free way to model our data and read and write it.

tags:sqlalchemy,sql,rethinkdb

via NoSQL databases