Redis Server Version: 3.0.6
I have a test program, it continuous send requests to redis cluster. Requests contains SET、GET、LPUSH and LRANGE.
While resharding slots, all requests work so well, except LPUSH, it will cause MOVING exception in a high probability.
My program has a fault-tolerant client. It could deal with MOVING and MOVED exception. In fact it could deal MOVING exception caused by LRANGE request so well.
Could anyone please explain that?
The attachment is fault-tolerance implement of my client.