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.
我读过一篇文章,使用memcache缓存存储在mysql数据库中具有一定生命周期的密码,但是当数据库中更新用户密码时,memcache仍然缓存旧数据,生命周期结束后,再次从数据库中获取数据,然后得到最新的数据。
还有其他方法可以立即获取最新更新的数据吗?
通常,您在应用程序中使用的框架会让您设置规则,例如:
当然,一种方法是在更新 db 中 pw 的例程中,相同的例程使 memcache 中的相关记录过期。