单声道上的分布式缓存
我正在 mono 上寻找类似于 java 的 terracotta 和 infinispan 的分布式缓存解决方案。我想用它作为 nhibernate 的二级缓存。 Velocity和sharedcache没有mono支持,memcached不是分布式的,也不具有高可用性。
此致, 西尔马克
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找一种更复杂的数据网格解决方案,该解决方案将提供可扩展性和高可用性,但我发现内存缓存对于这种要求来说有点太原始了。我建议查看 Gigaspaces XAP 或 VMware Gemfire。两者都是具有.net客户端的java产品,两者都非常强大。千兆空间可能会提供更多的主机托管功能。
You are looking for a more sophisticate data grid solution that will provide scaling and high availability, memcache I find is a bit too primitive for such a requirments. I would advise to look into Gigaspaces XAP or VMware Gemfire. Both are java product that have .net clients both are very strong. Gigaspaces may offer a bit more co-location capabilities.
我认为你的意思是“复制”而不是“分布式”。 Memcached确实是分布式的,但不是复制的。不过,您可以使用此补丁来复制它。
I think you meant "replicated" instead of "distributed". Memcached is indeed distributed, but not replicated. However, you can make it replicated with this patch.