I plan to create a web service for GAE, which I believe has to deal with significant workloads. Therefore, I want to make full use of memcache, so I hope that most of the requests do not need to go to the data warehouse.
There will be several different users in this web service, and each of them will probably require different and non-overlapping data from the data store. I hope that GAE load balancing will be aimed at sending requests from the same user to the same instance of the Google App Engine application, which will increase the memcache attack speed.
How does load balancing work?
source
share