Tagged Questions
Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability.
15
votes
1answer
270 views
Write-Behind Cache for JPA
It would appear from searching around here and the web at large that it is not possible to implement EHCache as a write-behind cache for Hibernate, as that would require substantial changes to the ...
15
votes
2answers
3k views
How to differentiate between time to live and time to idle in ehcache
The docs on ehache says:
timeToIdleSeconds: Sets the time to idle for an element before it expires.
i.e. The maximum amount of time between accesses before an element expires
timeToLiveSeconds: Sets ...
11
votes
2answers
1k views
Avoiding multiple repopulations of the same cache region (due to concurrency)
I have a high traffic website and I use hibernate. I also use ehcache to cache some entities and queries which are required to generate the pages.
The problem is "parallel cache misses" and the long ...
10
votes
2answers
436 views
SingletonEhCacheRegionFactory vs EhCacheRegionFactory
This link (from the creator of Ehcache) says you should use SingletonEhCacheRegionFactory when you only have one Hibernate SessionFactory, and EhCacheRegionFactory when you have multiple.
But ...
10
votes
8answers
2k views
Any Java caches that can limit memory usage of in-memory cache, not just instance count?
I am looking for a simple in-memory (and in-process) cache for short-term caching of query data (but short-term meaning beyond request/response, i.e. session boundary).
EhCache would probably work, ...
9
votes
3answers
720 views
Caching with Hibernate + Spring - some Questions!
Im working on developing a webapplication with Spring 3 and Hibernate 3.6. At the moment I try to understand how Caching with Spring and Hibernate works. I found some sources about Caching with ...
9
votes
3answers
2k views
hazelcast vs ehcache
Question is clear as you see in the title, I would be appreciated to hear your ideas about adv./disadv. differences between them.
UPDATE:
I have decided to use Hazelcast because of the advantages ...
9
votes
8answers
9k views
OSCache vs. EHCache
Never used a cache like this before. The problem is that I want to load 500,000 + records out of a database and do some selecting/filtering wicked fast.
I'm thinking about using a cache, and ...
8
votes
6answers
628 views
Looking for a drop-in replacement for a java.util.Map
Problem
Following up on this question, it seems that a file- or disk-based Map implementation may be the right solution to the problems I mentioned there. Short version:
Right now, I have a Map ...
8
votes
1answer
3k views
Comparison of memcache, redis and ehcache as distributed caching framework
One of the decisions I need to make is what caching framework to use in my system. With so many to choose from, I am currently investigating redis, ehcache and memcached.
Can anyone point to ...
8
votes
4answers
4k views
ehcache persist to disk issues
I want to do something with ehcache in Java that I think should be extremely simple, but I've spent enough time frustrating myself with the docs...
Write a value to a disk persistent cache. Shut ...
7
votes
1answer
2k views
EhCache default cache in java
I have this configuration for ehCache:
<ehcache>
<defaultCache
name="defaut"
maxElementsInMemory="5"
eternal="false"
...
6
votes
1answer
166 views
How can I work around this apparent EhCache deadlock?
Using ehCache 2.4.4, I seem to have gotten into a deadlock on the ehCache Segment object. From other logging, I know that the 'waiting thread', 1694 last ran anything 9 hours before this stack trace ...
6
votes
6answers
243 views
Strategies for Java ORM with Unreliable Network and Low Bandwidth
I am looking at Hibernate for a system which needs to work in an unreliable network. There is a single central database that we need read-write access to, but it is available over a pretty patchy ...
6
votes
2answers
2k views
EHCache with Terracotta Vs Infinispan [closed]
We are working in the design phase of new project where we need to decide the caching framework. We need decide whether to go with EHCache with Terracotta or Infinispan for caching requirement? Can ...
6
votes
2answers
2k views
How can I force Maven to use Ehcache 2.2.0 with Hibernate 3.3.2GA?
Assuming that the two are compatible, how can I force Maven 2 to use Ehcache 2.2.0 instead of Ehcache 1.2.3 with Hibernate 3.3.2.GA?
Essentially, I wish to replace the puzzling and practically cyclic ...
6
votes
3answers
2k views
NoSQL or Ehcache caching?
I'm building a Route Planner Webapp using Spring/Hibernate/Tomcat and a mysql database,
I have a database containing read only data, such as Bus Stop Coordinates, Bus times which is never updated. ...
6
votes
2answers
2k views
Ehcache & MultiThreading
Does ehcache support multi-threading by default or does it require any configuration changes?
On multi threading my application with Ehcache i found that the DB hit count is actually increasing i.e. ...
6
votes
5answers
4k views
Setting up ehcache replication - what multicast settings do I need?
I am trying to set up ehcache replication as documented here: http://ehcache.sourceforge.net/EhcacheUserGuide.html#id.s22.2
This is on a Windows machine but will ultimately run on Solaris in ...
6
votes
1answer
1k views
Retrieving expired objects in Ehcache
I'd like to implement the following algorythm above Ehcache :
try to get an element from the cache
if the element is not expired
serve the value
else
serve the expired value
refresh the element ...
6
votes
5answers
2k views
Ehcache / Hibernate and RMI replication with large number of entities
I'm currently investigating how to use the RMI distribution option in ehcache. I've configured properly ehcache.xml and replication seems to work fine. However I've 2 questions:
-> It seems ehcache/ ...
5
votes
1answer
134 views
Is @Cacheable aware of the 'Thundering Herd' problem?
The "thundering herd" problem occurs in a highly concurrent environment (typically, many users). When many users make a request to the same piece of data at the same time, and there is a cache miss ...
5
votes
0answers
459 views
Are native SQL queries cached by default when Hibernate query cache is turned on?
Using Hibernate 3.3.0 and ehcache 1.2.3 with 2nd level caching and query cache turned on, I realised that the following code was returning the same sequence number across multiple calls which resulted ...
5
votes
4answers
261 views
Hibernate: Refreshing parent of many-to-one
I have two classes: Parent and Child, mapped one-to-many with relationship owned by Child. I also am using 2nd level cache with Ehcache.
To persist the relationship, I do this:
...
5
votes
2answers
433 views
What does a Terracotta server do when it is used as a backend for EHCache with Hibernate?
My DAL is implemented with Hibernate and I want to use EHCache as its second level cache with its distributed capabilities (for scalability and HA).
Seeing as EHCache provides distributed caching ...
5
votes
1answer
223 views
Hibernate 2nd level cache ObjectNotFoundException with a high number of concurrent transactions
We have a Java application that uses MySQL, Hibernate (3.5.1-Final) and EHcache(1.2.3) for our 2nd level cache.
Our hibernate.properties isolation level is Read-committed isolation = 2
# 2-Read ...
5
votes
1answer
1k views
Ehcache diskstore is deleted during application restart
I have an ehcache setup, that works just fine, except that the persistent diskstore data is removed everytime I restart my application/server (Spring application on TcServer/Tomcat). The whole point ...
5
votes
5answers
3k views
@Cache annotation usage error
I added the following annotation to enable cache to one of my EJB3 entities, to test caching with ehCache, where I use Hibernate as the persistence provider:
....
import ...
5
votes
3answers
2k views
Hibernate/Ehcache: evicting collections from 2nd level cache not synchronized with other DB reads
I have an application using JPA, Hibernate and ehcache, as well as Spring's declarative
transactions. The load on DB is rather high so everything is cached to speed things up,
including collections. ...
5
votes
1answer
1k views
Performance of hibernate Second Level Caching ehcache
We are considering using ehcache (1.6.0-beta5) to enable second level caching of a number of tables which are never modified. We have set up a read-only ehcache region for this table and currently it ...
4
votes
1answer
116 views
Using Spring cache annotation in multiple modules
I have a util module that produces a jar to be used in other applications. I'd like this module to use caching and would prefer to use Spring's annotation-driven caching.
So Util-Module would have ...
4
votes
1answer
87 views
Singleton or Instance Caches?
Although this question concerns EhCache primarily, it really applies to caching frameworks (and plain old caching) in general.
EhCache allows you to create a singleton CacheManager for managing all ...
4
votes
2answers
245 views
Debugging Hibernate/Ehcache deadlock
We are using Ehcache version 2.4.4 with Hibernate 3.5.5-FINAL. I've got a strange case happening on my debug environment - it looks like Ehcache is getting into a deadlock. Here's the relevant bit of ...
4
votes
1answer
139 views
How to refresh second level cache?
How to force reread db data (without evicting second level cache before reading) and then put it to cache.
The use case is as following:
There is a service, which uses dictionary data. The service ...
4
votes
1answer
98 views
Does ehcache respect serialVersionUID?
We're running ehcache 1.5 in a cluster with RMI replication and update servers one by one (think of a load balancer/proxy on top and zero-downtime updates).
We generally don't care about ...
4
votes
1answer
178 views
Integrating Neo4J and Terracotta?
Has anyone tried or even thought about using a terracotta solution (i.e. ehcache) to run/store Neo4J?
I understand Neo4J has High Availability, but that's really just replication. Want I really want ...
4
votes
3answers
312 views
A soft-locked cache entry was expired by the underlying Ehcache
Hibernate 3.3.x, ehcache 2.2.x
The following error occurs, when I try to publish a lots of users in a single go. Any idea on why this would happen and how to rectify this? Is there a way to ...
4
votes
3answers
490 views
Incorrect ehcache statistics: hits+misses == 0
I have a problem where net.sf.ehcache.CacheManager appears returns invalid statistics.
I'm using ehcache-core v2.3.2 (latest version) with ehcache-spring-annotations.
The problem is that ...
4
votes
1answer
481 views
EhCache BigMemory vs Diskstore on RAM disk
How is the performance of BigMemory of Enterprise Ehcache compared to Diskstore of Ehcache Community Edition used with RAM disk?
Big Memory permits caches to use an additional type of memory store ...
4
votes
1answer
139 views
Does EHCache require put() in order for changes to instance to reflect (XA)?
I've started working with EHCache as a transactional cache (XAResource) in a JTA UserTransaction and I'm seeing something which is a bit strange, at least in my mind, and I'd like to understand ...
4
votes
1answer
464 views
Caching data in grails
I have a site where users will first enter their search criteria. The search combines data from 2 sources, one of which is not a database. The search results are generally large enough to be paged.
...
4
votes
5answers
830 views
Ehcache - using a List<Integer> as the cache value
So here is the problem I am trying to solve - I have an Object with two integer fields that I want to cache
public class MyObject {
int x;
int y;
....
}
Now the field x is what I mainly ...
4
votes
1answer
7k views
What are the Maven dependencies to use hibernate, hibernate annotations, and ehcache?
Okay, apparently I am stupid and everyone else knows.
I would like to update my Maven pom.xml with the latest hibernate, hibernate-annotations, and ehcache dependencies.
I read the hibernate ...
4
votes
2answers
688 views
Infinispan equivalent to ehcache's copyOnRead and copyOnWrite
I am planning to implement a cache solution into an existing web app. Nothing complicated: basically a concurrent map that supports overflowing to disk and automatic eviction. Clustering the cache ...
4
votes
1answer
568 views
Deploying multiple Grails instances with shared cache and sessions?
I am looking for a solution that allows me to deploy multiple load balanced Grails instances that have shared cache (EhCache Server ?) and sessions, is this possible ?
I can't find any documentation ...
4
votes
1answer
472 views
HIbernate 3.5.1 - can I just drop in EHCache 2.0.1?
I'm using Hibernate 3.5.1, which comes with EHCache 1.5 bundled.
If I want to use the latest EHCache release (2.0.1), is it just a matter of removing the ehcache-1.5.jar from my project, and ...
4
votes
2answers
2k views
Hibernate 2nd level cache invalidation when another process modifies the database
We have an application that uses Hibernate's 2nd level caching to avoid database hits.
I was wondering if there is some easy way to invalidate the Java application's Hibernate 2nd level cache when ...
4
votes
3answers
10k views
Hibernate 2nd level cache
Hi I've run into some problems with hibernate 2nd level cache.
As cache provider I use ehcache.
Part of config from persistence.xml
<property name="hibernate.cache.use_second_level_cache" ...
4
votes
3answers
1k views
Manipulating Hibernate 2nd Level Cache
I am using hibernate as my ORM solution, with EHCache as the Second Level (Read-Write) cache.
My question is: Is it possible to access the Second Level cache directly?
I want to access this: ...
3
votes
3answers
67 views
How much data is too much for on-heap java cache? When should I start to think about off-heap cache?
How much data is too much for on-heap cache like ehcache?
I'm getting a 24GB RAM server. I'll probably start off devoting 2-4 GB for caching but may end up devoting 20GB or so to cache. At what point ...