通过添加ehcache.xml并设置Terracotta服务器,我一直在将Grails与Terracotta DSO结合使用。它工作得很好,但是我得到的消息是Terracotta不再支持他们的服务器(OpenSource或DSO,尽管命名)。
所以我一直在想是否有人试图用BigMemory代替Terracotta Server,这行得通吗?如果是这样,我需要哪些依赖关系,以及从哪里获得依赖关系?
我现在正在使用这些依赖项:
runtime 'net.sf.ehcache:ehcache-core:2.6.2'
runtime 'net.sf.ehcache:ehcache-terracotta:2.6.2'
runtime 'org.terracotta:terracotta-toolkit-1.6-runtime:5.2.0'
感谢您的反馈。
最佳答案
BigMemoryMax是一个工具包(压缩包),其中包括最新版本的Terracotta Server。
最新版本是BigMemoryMax 4.1.0,您可以从http://terracotta.org/downloads/bigmemorymax下载。
然后,您需要更新依赖项以具有类似于以下内容:
runtime 'net.sf.ehcache:ehcache:2.8.0'
runtime 'org.terracotta:terracotta-toolkit-runtime:4.1.0'
关于grails - Grails和兵马俑BigMemory,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20131680/