Google appengine 内存缓存范围

Google appengine memcache scope

我要在 Google 应用引擎应用程序中引入内存缓存,我需要知道是否有任何内存缓存实例对当前用户而言是本地的(如会话)。

Memcache 实例是全局的,与 User 实例不紧密。

您可以通过键将值添加到内存缓存,因此您可以通过使用用户键 + 一些附加信息作为内存缓存值的键,自行实现 User 绑定内存缓存。

memcacheService.put(userKey + "userBalance", userBalance);

这将为每个用户缓存 userBalance