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

learn more… | top users | synonyms

0
votes
0answers
28 views

Spring Ehcache implementation with two JVM

In my application we have used Spring-Hibernate-ehcache 1. hibernate-ehcache version 4.1.7.Final 2. spring-data-jpa version 1.1.0.RELEASE Spring ehcache working fine inside the application. But when ...
0
votes
1answer
9 views

Is it possible to access the same Ehcache object from two different java applications?

I have two Java applications. One is a jar file that executes and writes certain data to the EhCache. The another application is installed as a war on weblogic server. My question is that is there ...
0
votes
0answers
19 views

How to use Query in Ehcache?

Currently I am working on using EhCache to store and retrieve the records. I have inserted some element values as a key,value pair in a cache. Now My requirement is to get the values using query by ...
0
votes
1answer
22 views

How to get size of data in Infinispan cache, alternate for calculateInMemorySize of ehcache?

I am migrating from ehcache to infinispan. In ehcache we have net.sf.ehcache.Cache.calculateInMemorySize() to calculate in memory size. How to calculate in memory size in infinispan?
0
votes
1answer
27 views

How to read and write the records in EhCache?

Hi All, My current requirement is to store and read the records using EhCache. I am new to EhCache Implementation. I have read the EhCache Documentation and started to implement. I have done ...
0
votes
0answers
20 views

Web caching and Spring WebMVC

Is this a duplicate of 11427666? Not quite. Our JSP pages take quite a long time to render (> 200ms) because of many many translated fragments and the resulting calls to the message source. I can ...
0
votes
0answers
12 views

Ehcache with Terracotta - Guidelines required

Im using maven, hibernate3, struts and spring in my application and have successfully used ehcache. Caching is done locally and now i want to go distributed. I'm not able to find a good tutorial where ...
0
votes
1answer
11 views

View what is currently in Hibernate Second Level Cache

So I have found sessionFactory.getStatistics() and I can use it for viewing hit and miss counts. But is there an easy way to view what values are actually in the second level cache of hibernate?
0
votes
0answers
18 views

Hibernate 4.0 + EhCache 2.4.3 Always Miss cache hit

Jars I used in my project: ehcache-core-2.4.3.jar hibernate-core-4.0.0.Final.jar package com.mypackage; import org.hibernate.HibernateException; import org.hibernate.SessionFactory; import ...
3
votes
1answer
52 views

Best practice for real-world DAOs using @Cacheable annotations

I'm new to Spring and I'm very excited about all the things it offers! Right now, I'm trying to modernize a couple of DAOs in my existing project. Specifically, I want to replace my old plain JDBC ...
0
votes
1answer
15 views

EhCache standalone server

I want to use EhCache standalone server. I downloaded package and started server using startup.sh in bin directory. server successfully started. Further I want to create (PUT) using REST some cache ...
0
votes
1answer
26 views

Slow ehcache spring annotations

I use ehcache-spring-annotations 1.2.0 (Google code) with Spring 3.0.2. I have annotated a DAO method with @Cacheable. The caching actually takes place (verified with logging and ehCache mbean). ...
0
votes
0answers
28 views

EhCache with Hibernate: getting LazyInitializationException after a while

We are using EhCache with an application built on Hibernate. The application classically displays webpages using data retrieved from the database using Hibernate. The data can now be cached by ...
0
votes
0answers
19 views

Caching support for mutitenant enviornment

I have a use-case where I want to "partition" the cache. I've tried using spring annotation based caching. It works fine for a single tenant application. E.g. The name of the cache in @Cachable is ...
0
votes
0answers
24 views

Spring cache support for pure jdbc read operations

I want to implement caching support for jdbc read methods. I've tried by following this blog. But I was unable to get the expected results(Caching). I guess this happens 'cause I am directly using ...
0
votes
0answers
7 views

How to introspect a cache controlled by 'net.sf.ehcache.constructs.web.filter.SimpleCachingHeadersPageCachingFilter'

My exact query: I am using ehCahe, and can introspect values existing in a cache I have defined. But cannot introspect values in a cache, controlled by the "net.sf.ehcache.constructs.web.filter" Is ...
0
votes
1answer
18 views

Spring portlet ehcache delete cache on portlet undeploy

I am using Spring portlet ehcache in Liferay environment 6.x problem is in dev environment if i drop portlet war to deploy folder. After 3-4 attempts it gives me perm gen/ out of memory exception. ...
2
votes
2answers
46 views

Spring Cache @cachable - not working while calling from another method of the same bean

Spring cache is not working when calling cached method from another method of the same bean. Here is an example to explain my problem in clear way. Configuration: <cache:annotation-driven ...
0
votes
1answer
50 views

No Persistence provider for EntityManager named cache

Message.java import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; import ...
0
votes
1answer
42 views

play framework cache annotation

Can somebody exlain, with a sample, how works the cache annotation in play framework 2 in java I would like to cache the result of the method with his parameters; something like this: @Cache(userId, ...
1
vote
1answer
54 views

Play framework How to reconcile Stateless with Session & Cache

I'm novice in Play framework, We said that Play 2 is fully RESTful - there is no Java EE session per connection. However, we can save data in different ways: Session, Flash or Cache! Does not exist ...
1
vote
1answer
36 views

Ehcache Replicated Cache not synchronizing at startup

I have an ehcache Cache replicated across two machines. The peers correctly find each other and replicate once both peers are started. However, if the 1st peer starts first, and receives several ...
0
votes
0answers
22 views

Grails cache-ehache is not working properly

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, cache { name 'userprojects' eternal false ...
0
votes
0answers
13 views

Is ehcache a suitable technique to create a disk based offline cache for a read only database

I am trying to implement some form of disk backed cache for a read only database, including the ability to "cache" offline data. The database stores time series data. I want to cache data access for ...
1
vote
1answer
79 views

ReentrantLock.tryLock(long timeout, TimeUnit unit) does not timeout when can not acquire lock

During integration my project with Ehcache (with BlockingCache decorator, which is internally using ReentrantLock) I found some strange behaviour on one machine. From time to time, threads that are ...
0
votes
0answers
18 views

ehcache asynchronous write/put example

Hi I'm trying to implement ehcache into our product to handle caching large amounts of data. While doing some research I saw that asynchronously caching can be beneficial for larger queries so that ...
1
vote
1answer
30 views

Hibernate, @ManyToOne inserts, and ehCache

I have a parent -> child relationship, with a @ManyToOne / @OneToMany relationship. I'm processing updates to the parent, in code that goes roughly like this: Get the parent Retrieve from (in ...
0
votes
0answers
53 views

Use ehcache with Spring and Hibernate

I am creating a Java web application using Spring and Hibernate(created using Maven). I want to introduce Eh-cache. But I am new to this and need to know from the scratch. I have a Entity class(A ...
0
votes
0answers
51 views

Is there any other good documentation for Metrics Codahale

In the net i'm unable to find more details for the Metrics tutorial or example. Even the Metrics site itself have very minimum level of details. Could any one can provide the better documentation link ...
0
votes
0answers
26 views

Ehcache simple search/transaction example?

I'm trying to test the capabilities of ehcache and I believe I have it set up properly in the cache initialization which I learnt from the code samples and elsewhere online. However I haven't added ...
0
votes
1answer
42 views

Spring EhCacheCacheManager who to get EhCache object to query

java - Spring - ehCache I am using spring ehcache implementation spring context gives me Cache object that does not have following method Query query = cache.createQuery(); Can some body advise ...
1
vote
1answer
44 views

Using EhCache as the main Datatasource instead of Database

Is it reliable to use ehCache as a datasource instead of a database ? My business functionality will be to periodically collect information from a running application and store it in the Ehcache ...
1
vote
0answers
37 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 ...
0
votes
1answer
39 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
113 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
26 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
42 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
8 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
37 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
22 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
37 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
23 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
56 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
75 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
40 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
44 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
50 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
53 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
64 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
58 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 ...

1 2 3 4 5 17