Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 中使用 GAE 增加 Memcache 中对象的过期时间的最佳方法是什么?
我将尝试再次设置对象,但这是正确的方法吗?
memcache 使用最近最少使用的驱逐算法。如果您查询对象,它应该会导致它保留更长时间。
如果您设置了明确的过期时间,则使用新的过期时间再次存储记录将更新过期时间。
如前面的答案中所述,使用新的到期时间再次设置它。但是您还应该关注所选的新到期时间。您的到期时间还必须在考虑数据及其新鲜度的情况下生成。