views:

191

answers:

1

Hi,

I'm searching for a distributed caching solution on mono similar to java's terracotta and infinispan. I want to use it as a level 2 cache for nhibernate. Velocity and sharedcache have no mono support, and memcached isn't distributed nor have high availability.

Best Regards, sirmak

+1  A: 

I think you meant "replicated" instead of "distributed". Memcached is indeed distributed, but not replicated. However, you can make it replicated with this patch.

Mauricio Scheffer
Thanks, the difference between replication and distribution is replication replicates the same data to all caching servers, but distribution partitions the data with replicated copies for HA. Terracotta and infinispan can both distribute data.
sirmak