[google-appengine] Keep data on memcache as long as possible

2011-09-22 Thread yamadaag
Hello. I want to keep data on memcache as long as possible. I'm planning to use cron which checks data on memcache, but I think this way needs large list of memcache keys. Does anyone have some idea to keep data longer on memcache? -- You received this message because you are subscribed to the G

[google-appengine] Re: Faster than get_by_key_name

2011-09-22 Thread yamadaag
; > > the entity by that key, so it's already the quickest method. There's no > > > practical time cost in the computing of the key. > > > > Steve Sherrie > > > > On 11-09-20 06:16 PM, yamadaag wrote: > > > >> Hello. > > > >&

[google-appengine] Faster than get_by_key_name

2011-09-20 Thread yamadaag
Hello. I often use "get_by_key_name" to get entities from Datastore. I'm looking for faster way to get entities, does anyone know? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@goog

[google-appengine] Re: Number of entities or size of indexes would affect searching speed?

2011-06-16 Thread yamadaag
docs. > >    http://code.google.com/appengine/docs/python/datastore/queries.html#B... > >   You can also find some discussion of how the datastore works in the > articles.  These can be quite useful in improving your understanding. > >    http://code.google.com/appengine/articles

[google-appengine] Number of entities or size of indexes would affect searching speed?

2011-05-25 Thread yamadaag
Hello! I'm creating a web-app on Google App Engine/Python now. I use searchableModel to search entities from datastore, and I'm wondering how does the number of entities or size of indexes would affect searching speed. Does anyone know about it, or knows where I can see the pages/ documents about