[Logo] Terracotta Discussion Forums (LEGACY READ-ONLY ARCHIVE)
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
[Expert]
Messages posted by: kevin_c  XML
Profile for kevin_c -> Messages posted by kevin_c [2]
Author Message
I downloaded terracotta version 3.7.5 which comes with ehcache and quartz, and I have tried running a terracotta server to cache my data. However my tc-config file is not correct and I am getting a schema error when I try and connect it to my spring project. I also downloaded big memory and this works fine with my project but the problem is that when I try and use some features like overflowToOffHeap set to true I get errors saying this is only available for the enterprise edition. What software am I supposed to be using and what configurations are correct? I really want to use ehcache as it seems to be the de facto standard for caching but it seems like there is not any recent documentation on setting this up. Can anyone point me to any recent tutorials or guides?

my tc-config.xml file is as follows:

<?xml version="1.0" encoding="UTF-8"?>
<con:tc-config xmlns:con="http://www.terracotta.org/config">
<clients xmlns:tc="http://www.terracotta.org/config">
<logs>%(user.home)/terracotta/client-logs</logs>
</clients>
<servers xmlns:tc="http://www.terracotta.org/config" secure="false">
<server bind="0.0.0.0" host="127.0.0.1" name="127.0.0.1:9510">
<data>C:\Users\KC\terracotta\server-data</data>
<logs>C:\Users\KC\terracotta\server-logs</logs>
<tsa-port bind="0.0.0.0">9510</tsa-port>
<jmx-port bind="0.0.0.0">9520</jmx-port>
<tsa-group-port bind="0.0.0.0">9530</tsa-group-port>
<data-backup>C:\bigmemory-max-4.0.0\server\bin\data-backup</data-backup>
<index>C:\Users\KC\terracotta\server-data\index</index>
</server>
</servers>
</con:tc-config>
is there anyway to set this up with standalone ehcache server? Right now from what I understand, the data is being cached within the programs memory and using up its resources. I want to be able to have this data on a completely different server, but it seems that spring's current annotations do not support this, and I have to code the restful api calls myself. Is this assumption true?
 
Profile for kevin_c -> Messages posted by kevin_c [2]
Go to:   
Powered by JForum 2.1.7 © JForum Team