Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've read ehcache documentation and knows that all the data in distributed cache are distributed across all the nodes. That mean none of the node have all the cache data. So what happened when one of the node dead? The cache objects on that dead node are gone?

share|improve this question

1 Answer

Except if you use Terracotta as a clustering mechanism, all other ones would mean: all the data only present on the node that fails is lost.

Using Terracotta clustering, the data is "owned" by a Terracotta Server stripe, which can be backed up passive standby for HA. In such setups, data is never lost.

share|improve this answer
Thanks, I'll try it, and see what happend! – Martin Luo Nov 27 '12 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.