ensnare
ensnare

Reputation: 42033

What's the best way to handle memcache servers that fail?

If the server doesn't respond during a set or get operation, will memcache remove the server from the pool automatically?

Upvotes: 0

Views: 421

Answers (1)

Daniel
Daniel

Reputation: 7172

Your memcache client will decide to remove the server from the pool or not.

If you have consistant hashing turned on, the client will not remove the server from the pool, otherwise the key/value will go to another memcache server.

Upvotes: 1

Related Questions