Hello,
I was wiring together ehcache-2.4.0 with
terracotta. The main question is
which version of terracotta do I pair ehcache-core-2.4.0-SNAPSHOT.jar with?
I am getting a Terracotta jars missing most likely message.
Now here is a list of jars that my project references:
ehcache-terracotta-2.4.0-SNAPSHOT.jar
ehcache-core-2.4.0-SNAPSHOT.jar
ehcache-terracotta-toolkit-1.1-runtime-2.0.0.jar
I am using the terracotta 3.4.0 terracotta server.
Earlier I had successfully paired terracotta 3.4.0 with ehcache2.3.0
Is there anything I am missing out on
This is my ehcache.xml:
<terracottaConfig url="localhost:9510"/>
<cache name="sampleTerracottaCache"
maxElementsInMemory="100000"
eternal="false"
copyOnRead="true"
timeToIdleSeconds="3600"
timeToLiveSeconds="1800"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="1"
overflowToDisk="false" >
<searchable/>
<terracotta clustered="true" valueMode="serialization" />
</cache>