Designing persistence schema for BigTable on AppEngine

Posted by Vitalij Zadneprovskij on Programmers See other posts from Programmers or by Vitalij Zadneprovskij
Published on 2012-11-07T21:52:17Z Indexed on 2012/11/07 23:13 UTC
Read the original article Hit count: 390

I have tried to design the datastore schema for a very small application. That schema would have been very simple, if not trivial, using a relational database with foreign keys, many-to-many relations, joins, etc.

But the problem was that my application was targeted for Google App Engine and I had to design for a database that was not relational. At the end I gave up.

Is there a book or an article that describes design principles for applications that are meant for such databases?

The books that I have found are about programming for App Engine and they don't spend many words about database design principles.

© Programmers or respective owner

Related posts about database-design

Related posts about relational-database