Reputation: 1808
Please see this appstats log, randomly some memcache calls take extraordinarily longer than others. These are all get calls for memcached counters so there is absolutely nothing different about the calls that are taking longer than others. Any explanation?
Upvotes: 2
Views: 181
Reputation: 31928
Memcache like all GAE service is done using a remote procedure call and the response time is not generated. If the machine/network is busy it might lag.
The real question here is way are you calling memcache 20 times in a single request?
There are two ways go work around it:
Upvotes: 1