https://developers.google.com/appengine/docs/python/datastore/queries

 

Shows examples of <> which can be stacked, and "In List".  You can also do
calculated/weighted values where you say +4 if red and -2 if blue.

 

Get by ID should be around 150MS if you use the ID. 100ms is minimum
typically it trends up to 350ms. GAE has to be having a bad day for GetbyID
/key to be more than 500ms.

 

We are seeing 8MS average on fetches from backends In instance memory. And
for Static large data sets we have code that list literally as simple as 

this = 'that'

That = 'this'

Shipping400lbsto90201 = '345.97'

 

Which is very close to a no-op.

 

Our spin up time for a 100 meg static data set is 4s. Best of 100,000
requests was 3ms worst of was 114ms (again with an average of 8ms)

 

 

 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to