http://www.playframework.org/documentation/2.0.2/JavaCache
Atm 我找不到 Cache.remove 方法。估计还没实现?
然后我现在需要使用第 3 方库缓存解决方案,例如 memcached。
// 2.0 final
Cache.set("item.key", null, 0)
// later
Cache.remove("item.key")
http://www.playframework.org/documentation/2.0.2/JavaCache
Atm 我找不到 Cache.remove 方法。估计还没实现?
然后我现在需要使用第 3 方库缓存解决方案,例如 memcached。
// 2.0 final
Cache.set("item.key", null, 0)
// later
Cache.remove("item.key")
虽然完全不清楚,但可以理解为:
由于Play 2.0 final
要删除缓存条目,请使用:
Cache.set("item.key", null, 0);
(它会item.key
用null
值设置缓存,0秒后过期)
“稍后”表示有人忘记添加此方法,稍后会添加;)
编辑:
Play 的 Lighthouse已经解决了这个问题