Suppose that I have two memcached nodes ( node A, B ) at the beginning, and when I add a new node C , part of the keys are reassigned and, thanks to serial hashing, only some of them.
Assume that the value with the key " foo " initially on server A is now mapped to server C.
When I finally delete node C, the key should again display on node A, but at that time node A contains only outdated data.
So, is data cleansing the only way to solve this problem?
source share