Top "Ehcache" questions

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

Spring Cache - Create custom CacheManager

I'm using Spring Boot and EhCache to develop a calendar application. I'm trying to cache the following method: @Override @Cacheable(…

java spring-boot ehcache spring-cache
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 …

spring caching annotations ehcache spring-annotations
What are the best Cache practices in ehcache or spring cache for spring MVC?

Planning to implement cache mechanism for static data in spring web based application, can any one explain which is the …

java spring spring-mvc ehcache spring-cache
Simple Java caching library or design pattern?

I need to frequently access the result of a time-consuming calculation. The result changes infrequently, so I have to recalculate …

java design-patterns caching memcached ehcache
Hibernate EHCache vs MemCache

I would like to use caching in my web application which will be scalable and distributed as well. I have …

memcached ehcache spymemcached
EhCache + Hibernate Cache is not alive

After configuring EhCache v2.4.5 as the second level cache for hibernate v3.6.7 I get the following error while trying to …

hibernate caching ehcache second-level-cache
EHCache Configuration + Spring Boot: NoCacheRegionFactoryAvailableException

I'm trying to configure Spring Boot application with second level cache based on EHCache. I'm getting this exception: Exception in …

hibernate spring-mvc spring-boot ehcache second-level-cache
Configuring EHCache for Spring3.1.1 and Hibernate

I am attempting to enable object caching in an existing Spring 3.1.1 application with Hibernate 3.5.5. I am using ehcache 2.2.0. In my …

java spring hibernate ehcache
How do I use the key, in a condition in Cacheable annotation

I'm caching the results of a function using the @cacheable annotation. I have 3 different caches and the key for each …

java spring ehcache spring-cache
Ehcache automatic key generation and @Cacheable spring annotation

Does anybody know how the default key generation for Ehcache works? If I have the following method: @Cacheable(cacheName = CACHE_…

java spring ehcache pojo method-parameters