1

通过添加 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'

感谢您的反馈。

4

1 回答 1

1

BigMemoryMax 是一个工具包(tarball),包括最新版本的 Terracotta 服务器。

最新版本是 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'
于 2014-01-03T18:33:11.360 回答