Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability.

learn more… | top users | synonyms

1
vote
0answers
19 views

Caching issue with Hibernate EhCache

Our project is using Hibernate 3.0 for DB access. We are using 2nd level cache and query cache to cache the queries and entities.EhCache is used for caching purpose. The DAO method getData() fetches ...
-2
votes
0answers
19 views

Block concurrent transactions being committed via server code

In an application, if suppose a user is adding a device on a particular position and if another user from a different location tries to add a device in the same position, there are chances that the ...
0
votes
1answer
26 views

Error while executing singleton Cache Manager inside class mediator

My class mediator code is : package wso2.caching; import org.apache.synapse.MessageContext; import org.apache.synapse.mediators.AbstractMediator; import java.util.Date; import ...
0
votes
3answers
41 views

Ehcache-spring-annotations @Cacheable not catching method with String object as parameter

I am using ehcache-spring-annotations-1.2.0.jar . This is my cache.xml file <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
0answers
9 views

Ehcache and SLF4J error

I am new to Ehcache and Slf4j .I am using ehcache-2.6.6 I have used slf4j-api-1.6.1 jar slf4j-jdk14-1.6.1 jar When i extracted ehcache-2.6.6-distribution.tar these two jars were in folder lib . ...
1
vote
0answers
25 views

EHCache: Cache simple already exists

How to resolve exception : Here is a configuration: <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager" p:cacheManager-ref="ehcache" ...
0
votes
0answers
3 views

ehcache: replicateAsynchronously=false doesn't seem to work on jetty 6.1.22

Here is my ehcache config: ...etc... <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" properties="peerDiscovery=automatic, ...
0
votes
0answers
23 views

Hibernate L2 Cache Usage for reference entities

In one of my applications I have a lot of read-only reference entities that are being used. I am in the process of configuring these entities to be cached in the L2 cache (with Ehcache) for improving ...
1
vote
0answers
18 views

Benefit from using ehcache in a hibernate webapp

I'm working on a webapp which is used by multiple user at the same time (on the same objects). I'm using spring and hibernate for DI and persistence. Now I'm considering adding ehcache to the family, ...
0
votes
0answers
23 views

Where is my spring web service storing my cached data when using ehcache?

I am working on a spring source java web service project. I am using ehcache to cache data and avoid having to make expensive io bound method calls repeatedly. I have set this up and it is working on ...
1
vote
0answers
14 views

Sharing an instance of ehcache with multiple jboss web applications using different classloaders

I've got several web applications running inside JBoss, each of which has it's own class loader. I'm using ehcache as my second level hibernate cache. Is it possible to share a single cache between ...
0
votes
0answers
32 views

Grails ehcache plugin cache not expiring

With the Grails ehcache plugin I'm trying to cache a response and occasionally refresh that response. This is what I have in my Config.groovy, grails.cache.config = { cache { name ...
4
votes
1answer
60 views

Ehcache shutdown causing an exception while running test suite

I'm experiencing the following problem. I have a test suit in my project and each individual test runs fine. However when I run them as a suite I some of them fails with the following exception: ...
0
votes
0answers
25 views

How to configure EhCache for Hibernate 4 with multiple data sources

I am trying to configure a Spring application that has to access multiple databases. It all works ok until I try to set caching for the second database. Can someone paste xml configuration for ...
1
vote
0answers
39 views

Play Cache unable to deserialize case class

Seems the Play Cache (i.e. ehcache) is having trouble deserializing my case class. I'm seeing java.io.InvalidClassException (no valid constructor) Is there a straightforward way around this? I ...
0
votes
0answers
33 views

Many to one relationshilp table have same entity name returns wrong value

I have Two Table FOLDER and TOPIC. Their hbm as follows... <hibernate-mapping> <class name="com.company.Folder" table="FOLDER"> <id name="folderId" type="java.lang.Long" > ...
0
votes
0answers
34 views

ehcache.CacheException : ClassNotFoundException

net.sf.ehcache.CacheException: java.lang.ClassNotFoundException crs.domain.Grid at net.sf.ehcache.store.disk.DiskStorageFactory.retrieve(DiskStorageFactory.java:890) at ...
0
votes
1answer
36 views

Ehcache does not allow persistence element

I am using Ehcache Version 2.7 pom.xml <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.7.0</version> ...
0
votes
1answer
43 views

How to use Ehcache to cache the jsp pages?

We are on the development of gwt-web application with Google App Engine. Now our application became slow due to lot of jstl logic in jsp pages.Earlier i wanted to use memcache service of appengine but ...
0
votes
1answer
82 views

Ehcache with tomcat simple example

I want to include Ehcache in a Java web application hosted in Tomcat. What I want to do is check my cache for a key and if the key exists then retrieve it, if not then add it to the cache for later ...
1
vote
0answers
28 views

Ehcache, fast restartable and overflow to disk

I am using ehcache entreprise 2.7 with big memory. I want to have a cache that overflow to the disk when full AND I want this cache to be persistent through restarts. My current configuration is that ...
0
votes
0answers
27 views

Spring Framework: Using @CacheEvict on a list

I have following method signatures: @Cacheable(value="keyValueCache",key="#key") public KeyValuePair getKeyValuePair(String key); I have following cache defined in ehcache.xml: <cache ...
0
votes
1answer
58 views

Grails Cache Plugin: Cacheable key using only two of three params

With a restful api call such as myserver/api/mydata?req?%7Bcode%3A%2244%22%2C%20name%3A%22sally%22%2C%20version%3A7%7D where the parameters passed in are code=44, name=sally, and version=7, and I ...
0
votes
0answers
9 views

Ehcache server - old data not accessible

This was 1st asked at: http://forums.terracotta.org/forums/posts/list/0/8160.page We have been using ehcache-server (ehcache-server-1.0.0-distribution.tar.gz) for over 1 year now and moved to new ...
0
votes
0answers
37 views

Hibernata EhCache timeToIdleSeconds and timeToLiveSeconds

in my application using Hibernate, spring and struts, I put ehcache for my entites and my queries. the problem I have is that my entities and my queries are not keep in cache for the time i ...
0
votes
0answers
74 views

Cache (EHCache) fallback mechanism

I have an application which has 2 service method exposed for 3rd party access that is search and book order. When 3rd party user send search request, my application will perform search operation & ...
0
votes
1answer
35 views

ehCache not working in hudson

I'm developing a java webapp using spring mvc and ehCache. I can deploy it fine using tomcat, or jetty. I have 2 maven projects, a webapp/war and an integration test. I want the hudson job to run the ...
0
votes
1answer
69 views

Issue with Spring Cache Abstraction & Ehcache

I am facing an issue wherein the code tries to find cache named "AdministrationContactManagerImpl.retrieve" but it fails to find it.The target method is annotated with @cacheable. ...
0
votes
2answers
59 views

Hibernate query cache with criteria

I think there is a point that I have not understand yet. I have a class witch have 3 collections of elements in attribute public class Pays implements Serializable{ private static final long ...
0
votes
1answer
43 views

how ehcache determines “changed data”?

I believe ehcache replicates only changed data (delta)? My question is how it computes the delta? Let's say I have a java object that has 5 attributes and out of which only one is changed. The class ...
0
votes
0answers
33 views

Hibernate cache 2nd level on many to many relation

I am using the 2nd level cache EhCache in my application, but I am facing a little problem. I have two entities, Pays and Composant, with a many to many relation. So I created another class ...
0
votes
0answers
30 views

Ehcache - java.lang.ClassNotFoundException: after update

i'm new to Hibernate and Ehcache... (using servicemix also) I'm encountering the following error when I update an object in one transaction... And then at a later point call a cached query looking ...
0
votes
0answers
70 views

Hibernate EHCache monitoring

I don't have much experience with Hibernate second level cache providers. I have achieved, following EHCache documentation, to configure in my hibernate.cfg.xml and ehcache.xml files the EHCache cache ...
0
votes
1answer
48 views

How to test ehcache using mockito?

Im helper method use ehcache, to reduce queries to Db. Now want to implement JUnit+Mockito test to ensure that ehcache works properly. Have such variant of test: @Autowired private DBService service; ...
0
votes
0answers
61 views

Does Hibernate 4 with ehcache require ehcache-core library?

I am attempting to upgrade an appliaction from Hibernate 3 to Hibernate 4. The application uses ehcache. When upgrading to Hibernate 4.2.0.Final I added a dependency on hibernate-ehcache-4.2.0.Final ...
1
vote
0answers
36 views

can database caching solutions be used locally in clients and not on the server side?

I'm interested in caching solutions for a client server Java application both to speed up locally the queries but mostly to limit the network traffic. Currently each client queries over and over the ...
3
votes
4answers
152 views

@Cachable annotation does not work

We're using ehcache for caching purposes in our project. import com.googlecode.ehcache.annotations.Cacheable; // Other imports @Component public class Authenticator{ @Cacheable(cacheName = ...
0
votes
1answer
127 views

Grails ehcache.xml custom caches configuration

ehache.xml for cache configuration has been created. But setting in this file works only for hibernate 2L cache For custom caches (for example caching service methods invocation: ...
0
votes
0answers
30 views

Caching using ehcache vs singleton object

I am considering ehcache to implement my caching solution. My cache needs to be a singleton static object which needs to be updated using a spring trigger method. I ideally would be updating the same ...
2
votes
1answer
48 views

Specifying the order of proxy creation in Spring

I have a Spring Application where I have the following skeleton class class ServiceCaller { public Result callService() { //call a remote service } } Since calling a remote ...
0
votes
1answer
69 views

Notifying DB change across Java EE apps

I have a web-app communicating to an EJB service to retrieve data and show it to clients. The DB for both web-app and EJB service are different. I cache whatever data I retrieve from the EJB service ...
0
votes
1answer
53 views

Ehcache eternal attribute usage with READ_WRITE objects

I am setting up Ehcache as a 2nd level cache for Hibernate on my project. All of the objects are going to be updated through Hibernate and have a cache strategy of CacheConcurrencyStrategy.READ_WRITE. ...
1
vote
1answer
50 views

Does prefetching some query results in Hibernate makes sense?

While exploring my new project I have encountered some legacy code, which has the meaning of explicit prefetching some query results into Hibernate cache. The task solved by that code is to select ...
0
votes
0answers
40 views

Ehcache Jgroups Replication - No implementation for JGroupsCachePeer getQuiet API

I am using Ehcache JGroups Multicast replication for my application. I have some requirement where I want to retrieve some specific cache keys from neighboring cache peers. I do not want to use ...
0
votes
2answers
138 views

Spring 3.1.1 MVC @Cacheable not being hit

I am writing a webapp, and and trying to cache some pojos that are called from the controller. I wasn't able to get anything working when I tried using org.springframework.cache.annotation.Cacheable, ...
2
votes
1answer
57 views

Caching rendered page for better performance

What is the best way caching all page content in application based on spring framework ? I want use cache to remember all rendered pages for the same urls (I don't want use Squid server). It exists ...
0
votes
1answer
72 views

how to use EHCache Configuration file in web application

Whenever i run the application, first time it returns cacheMgr.cacheExists("myCache1") as true but after restarting the server it is giving as false. I am not able to understand the problem. ...
0
votes
0answers
59 views

EHCache configuration in WebApplication

I have written the below code for getting the cacheManager object public class EHCacheUtil implements Serializable{ /** * */ private static final long serialVersionUID = 1L; ...
0
votes
0answers
59 views

strange behavior when setting ehcache as hibernate 2nd level cache

I have an spring mvc web module which uses a restful webservice to store/retrieve data. I configured an domain object cached in 2 hours with strategy "NONSTRICT_READ_WRITE". I deployed the spring mvc ...
0
votes
0answers
52 views

auto refresh the ehcache programatically

In my application i am using ehcache.in that application i have the follwing methods namely called addCustomer,addFriend,dispFriends.Adding the data using ehcache working fine.i have problem with ...

1 2 3 4 5 17