0
votes
2answers
63 views

Ehcache - whether objects are eternal or not

In my ehcache configuration I see these: eternal="false" timeToIdleSeconds="0" timeToLiveSeconds="0" What does that mean effectively? Documentation mentions that timeToLiveSeconds="0" means these ...
0
votes
1answer
31 views

Terracotta L2 cache invalidation by messaging

I am trying to evaluate Terracotta Disctributed Cache with ehcache. I have the following query. There are 20+ apps which will use a TAS distributed cache. As I understand there will be a L1 cache in ...
3
votes
4answers
272 views

Open-source Distribued Cache for Java

What is the best open source distributed cache that can be used in Java? I thought it was EHCache, but apparently it can be scaled on multiple nodes only when using Terracotta Server Array, which is ...
0
votes
1answer
107 views

Terracotta Disabling L2 cache and object serialization

I'm quite new to Terracotta and I've installed and made it work properly with EHcache for distribute caching, but what I'm getting now is not what I really want. In my application I would like to ...
0
votes
0answers
215 views

Data Caching in Java

I'm trying to develop a distributed application in java. Which tool for data caching is better ?? JBoss cache Infinispan Ehcache Terracotta cache ??
0
votes
1answer
299 views

Ehcache: How to swap to the diskStore when Terracotta server is off-line?

I need to configure my app to swap from the Terracotta server configuration to the diskStore when the Terracotta server is unavailable. Is there a way to do this? When I configure the terracottaConfig ...
0
votes
1answer
453 views

Logging Ehcache get requests

I am trying to write a class that would trace all Ehcache GET requests. For the performance obsessed - this would only be switched on for debugging purposes. I can see following three options ...
0
votes
1answer
67 views

caching system with search query option

I am looking for a distributed cache solution that will also support some sort of basic query languages like "get the objects which has object.id > 10" kind of. I did a hands on with terracotta ...
0
votes
1answer
197 views

can I use other distributed cache in place of jboss cache for session replication in jboss

I am using jboss-cache for session replication in jboss 4.0.4. How do I use a different distributed cache(Terracotta or any other) in place of jboss cache?
1
vote
1answer
129 views

Restart terracotta after adding/modifying domain classes in Grails app

We have a Grails app, and we are using Terracotta for caching. We have noticed that every time we add some fields in existing domain classes or add new domain classes, the app crashes with "unexpected ...
7
votes
3answers
7k views

Why is EhCacheProvider deprecated?

I am configuring my hibernate project to use a 2nd-level cache provider, so that I can take advantage of query caching. I added a dependency to ehcache: <dependency> ...
1
vote
4answers
253 views

Architecture question for implementation of a cache server

This is something of an architecture question. I have this idea of having a server with huge memory, that is used as a big objects cache holder. The clients send "Actions" to this server(like Search ...
4
votes
7answers
3k views

Distributed Caching

I am looking for a java distributed caching solution. We would like features likes: Distributed Auto-Discovery Redundancy Non-Centralized We've analyzed a framework like TerraCotta which seems to ...
0
votes
2answers
406 views

distributed caching on mono

I'm searching for a distributed caching solution on mono similar to java's terracotta and infinispan. I want to use it as a level 2 cache for nhibernate. Velocity and sharedcache have no mono support, ...
2
votes
3answers
333 views

Querying Terracotta

Is there any way to Query against the objects stored by a Terracotta instance? I am looking for SQL-Like Queries or any way to filter objects based on fields.