Sign in

Google Cookbook - Google App Engine

Posted by Antimatter15 on Sat 23 May 2009 in Scalability
import os
params = dict([part.split('=') for part in str(os.environ['QUERY_STRING']).split('

&

')])



For the raw query string, use ...
Posted by gravix on Sun 01 Mar 2009 in Scalability
This example builds on what Austin Chau did. Modify his javascript.py as follows:
class JsAgg(webapp.RequestHandler):
def get ...
Posted by austin.chau on Mon 03 Nov 2008 in Scalability
Add automatic JavaScript minification to your App Engine account.

Instruction and sample can be found here
http://austinchau.blogspot.com ...
Posted by detronizator on Sun 21 Sep 2008 in Scalability
=Browser Incompatibilities: the Most Common Problem=
The most common problem for Web Site developers is the fact that every browser ...
Posted by bowman.joseph on Sun 31 Aug 2008 in Scalability
If you are looking for a way to manage user sessions, then appengine-utilities at http://gaeutilities.appspot.com is a ...
Posted by marzia.niccolai on Fri 22 Aug 2008 in Scalability
It is more efficient to access an entity directly by key or key name.

Many people get one entity using ...