Thanks for the advice. But, won't channels limit me to 100 users per day? And does memcache pickup changes to the database quickly?
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/9WVje6plTXkJ.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
You probably need to come up with a way to filter your queries so
they only return what is needed. Or, come up with some other way to
make the reads more efficient. There are a number of ways you could
achieve this, but without knowing more about what you're doing it is
hard to suggest something.
Most likely, you'd need (or want) to sync memcache with the
datastore yourself. To quickly test how much this would help you
could cache the query results, then clear the cache each time
something is added. It is simplistic, but it might give you an idea.
Alex's suggestion about the channel API is also good. The free
quotas are sufficient for small apps, but for anything actually using
resources they won't stretch very far.
Robert
> --
> You received this message because you are subscribed to the Google Groups "Google App Engine" group.