[google-appengine] Re: How much time to give for each db query in order not to occur DeadlineExceededError

2008-12-24 Thread Bob
I see, it seems to be the best solution right now:) thanks On Dec 23, 2:28 am, Marzia Niccolai wrote: > Hi, > > It's difficult to estimate the amount of time it takes to put() and delete() > datastore entities because it depends a great deal on the size and shape of > your entities. > > One thin

[google-appengine] Re: How much time to give for each db query in order not to occur DeadlineExceededError

2008-12-22 Thread Marzia Niccolai
Hi, It's difficult to estimate the amount of time it takes to put() and delete() datastore entities because it depends a great deal on the size and shape of your entities. One thing you should do is call db.Put(entities) in one call, instead of multiple calls in one request to entity.put(). Also

[google-appengine] Re: How much time to give for each db query in order not to occur DeadlineExceededError

2008-12-20 Thread Bob
Hi GAE team, how about the time for deleting? I think it would also encounter the DeadlineExceededError.. Thank you:> On Dec 20, 11:52 pm, Bob wrote: > Too much db operations, it needs 10 seconds on my own computers to > read the whole file to store in the datastore. But on the GAE, it > occur