views:

50

answers:

2

i'm looking for best practise on designing database schema for content management system. any reference on this?

p/s: i do not plan to use open source lib. as i need to get it work on google app engine + JAVA

A: 

I have to warn you, the App Engine datastore is very different from a relational database like MySQL. Trying to use the datastore like a relational database will be very inefficient, or downright impossible. And it won't teach you anything about relational databases, which seems to be your goal.

Jason Hall