How different is Google App Engine in database structure
i have a huge database about 300 mb , 14 tables work on internal network i think in deploying it on gae using web2py and postgres
1- generally is it a good idea ?
2- is it easy to alter the database structure to work on gae ?
3- what about the sql ?
4- is it 开发者_如何学Pythoneasy to learn the gae way ?
thanks very much
Not a good idea - you can't use Postgres with GAE period.
- It's a good idea if you want to rewrite everything and totally change the structure of your application, which if it's "just 'cause it's cool" sounds like a big waste of time.
- No it is not going to be easy, for example, no JOINS period. There are many more reasons.
- There is no SQL to begin with.
- It's a relatively straightforward system and extremely powerful, but switching from postgres to their datastore is not going to be a simple process.
精彩评论