My understanding is when using memcached in "consistent hashing" mode, when a node is down, the clients will remap the key with the algo.
Consider I have 2 clients (A,B) and two servers (C,D)
What if client A think server C is down, but B think C is still alive?
So A will keep using C & D, but B will only use D. How to solve the data inconsistency arise from this case?