[google-appengine] Domain related query

2010-05-31 Thread ShriJ
Hi, I had bought a domain name from Google Apps for my app hosted on Google app Engine. Lets say my app was '.appspot.com' and the domain was 'www..com'. I have developed another app say '.appspot.com' and I was the earlier domain to point to this new app. I don't want to do URL forwarding. I'd

[google-appengine] Why don't I see some (video) search results?

2008-09-28 Thread ShriJ
Hi, When I search for some video results on video.google.com, I get a certain resultset. However, when I search for the same term from an application created using google appengine and using ajax.googleapis.com, I don't the results. For example: Searching for 'expertvillage tennis' on video.go

[google-appengine] "This request caused a new process..."

2010-05-19 Thread ShriJ
Hi, I see that with every other request that goes to my application, I get the warning: "This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical r

[google-appengine] Re: "This request caused a new process..."

2010-05-20 Thread ShriJ
minutes" sound way > > optimistic to me. My experience is rather 30sec. :( > > > Regards > >   J. Záruba > > > > This is a normal log message. > > > > T > > > > On May 20, 10:06 am, ShriJ wrote: > > > > Hi, > > > &

[google-appengine] Re: "This request caused a new process..."

2010-05-20 Thread ShriJ
, 12:23 am, Tim Hoffman wrote: > Hi > > On May 20, 3:02 pm, ShriJ wrote: > > > Yes... I see it very very often too. I just tried sending two requests > > with a 1 minute delay between them and saw that the logs show the > > message for both of them. This hurts performa

[google-appengine] Re: "This request caused a new process..."

2010-05-20 Thread ShriJ
.au(the > > orginal code for fishandlily.com.au > > hasn't been touched in all that time). > > > So I think good use of memcache (I am not using etags yet) can make a > > huge difference. > > > Regards > > > Tim > > > On May 20, 11:46 pm, Shr

[google-appengine] "Not in" GQL Query

2009-07-10 Thread ShriJ
Hi All, I want a query like "Select * from tableName where id not in (1,2,3)" in GQL. When I tried this in the data viewer on appspot, I get an invalid GQL query string error. Does anyone know how to construct a "Not in" query in GQL? Thanks in advance. -Shri --~--~-~--~~---

[google-appengine] "Quota exceeded"... although it doesn't seem to be

2009-09-01 Thread ShriJ
Hi, I've been having a very hard time since the last few days w.r.t. deleting existing data and uploading new data in my datastore. For deleting: I get a row using the key_name and then delete it. dbRow = modelObject.get_by_key_name(key_name) if dbRow: dbRow.delete() My

[google-appengine] About uploading data with appcfg.py

2009-09-01 Thread ShriJ
Hi, I have a problem while uploading data using appcfg.py. I have a file named videoloader.py which has the definition of the following classes: class Videos(db.Expando): ... class VideoLoader(bulkload.Loader): def __init__(self): ... loaders = [VideoLoader] So the same file has th