[web2py] Re: Scaling Web2py on GAE

2012-01-31 Thread Massimo Di Pierro
I suspect you have tables which use represent to look up the representation of each record. for example: db.define_table('item', Field('name'), Field('owner','reference auth_user')) {{=SQLFORM.grid(db.item)}} The grid needs to represent each owner. It is a user to will look up the repre

[web2py] Re: Scaling Web2py on GAE

2012-01-31 Thread Sam Bolgert
Here is my log from the Google App Engine local dev server. I don't understand where all these "1"s are being printed from and what they mean. Some of these pages are just static and are not making any Datastore calls in the controller. Any insight would be helpful. Thank you. 2012-01-31 18:08:29,

[web2py] Re: Scaling Web2py on GAE

2012-01-31 Thread Massimo Di Pierro
You cannot just swith from the datastore to gae:sql. They are different databases. To use the latter you need to setup an instance for it. Google has documentation about it. Anyway, that may solve your problem or make it worse. First of all you need to identify why you have to many read operations