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.
在多线程环境中,memcached 中的键是否有可能获得乱码值?如果是这样,如何以最少的同步时间避免它?
使用 Java 客户端访问 memcached 服务器
不会。Memcache 会返回一个之前有人写过的值,而不是乱码。如果您获取/修改/放置,则无法保证放置适用于与获取相同的值。如果需要同步,请使用 cas(比较和设置)操作。