我一直通过添加ehcache.xml和设置Terracotta Server来使用Grails和Terracotta DSO。它工作得很好,但我得到的信息是,Terracotta不再支持他们的服务器(OpenSource或DSO,无论其名称如何)。
所以我一直想知道是否有人试图用BigMemory替换Terracotta服务器,这行得通吗?如果是这样,我需要哪些依赖项?我从哪里获得这些依赖项?
我现在使用以下依赖关系:
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'感谢您的反馈。
发布于 2014-01-04 02:33:11
BigMemoryMax是一个工具包(tarball),其中包含最新版本的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'https://stackoverflow.com/questions/20131680
复制相似问题