use of net.sf.ehcache.Ehcache in project ORCID-Source by ORCID.
the class OrcidEhCacheFactoryBean method afterPropertiesSet.
@Override
public void afterPropertiesSet() throws Exception {
Ehcache existingCache = cacheManager.getEhcache(cacheName);
String diskStorePath = cacheManager.getConfiguration().getDiskStoreConfiguration().getPath();
LOGGER.debug("Cache manager disk store path = " + diskStorePath);
if (existingCache == null) {
CacheConfiguration config = createConfig();
if (cacheEntryFactory != null) {
this.cache = new SelfPopulatingCache(new Cache(config), cacheEntryFactory);
} else {
this.cache = new Cache(config);
}
cacheManager.addCache(this.cache);
} else {
this.cache = existingCache;
}
}
use of net.sf.ehcache.Ehcache in project uPortal by Jasig.
the class ExpiredElementEvictor method evictExpiredElements.
/** Evicts expired elements from the {@link CacheManager} */
public void evictExpiredElements() {
long evictedTotal = 0;
final long startTime;
final String[] cacheNames;
if (!evictLock.tryLock()) {
//Lock is already held, skip eviction
return;
}
try {
startTime = System.nanoTime();
cacheNames = this.cacheManager.getCacheNames();
for (String cacheName : cacheNames) {
final Ehcache cache = this.cacheManager.getEhcache(cacheName);
if (null != cache) {
final long preEvictSize = cache.getMemoryStoreSize();
final long evictStart = System.nanoTime();
cache.evictExpiredElements();
if (logger.isDebugEnabled()) {
final long evicted = preEvictSize - cache.getMemoryStoreSize();
evictedTotal += evicted;
logger.debug("Evicted " + evicted + " elements from cache '" + cacheName + "' in " + TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - evictStart) + " ms");
}
} else if (logger.isDebugEnabled()) {
logger.debug("No cache found with name " + cacheName);
}
}
} finally {
this.evictLock.unlock();
}
if (logger.isDebugEnabled()) {
logger.debug("Evicted " + evictedTotal + " elements from " + cacheNames.length + " caches in " + this.cacheManager.getName() + " in " + TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - startTime) + " ms");
}
}
use of net.sf.ehcache.Ehcache in project uPortal by Jasig.
the class CachingResourceLoaderImplTest method testCachedModifiedLoad.
@Test
public void testCachedModifiedLoad() throws Exception {
final Resource doc1Resouce = new FileSystemResource(doc1);
final CachingResourceLoaderImpl loader = new CachingResourceLoaderImpl();
final Ehcache cache = createMock(Ehcache.class);
final CachedResource<?> cachedResource = createMock(CachedResource.class);
final ResourcesElementsProvider elementsProvider = createMock(ResourcesElementsProvider.class);
expect(elementsProvider.getDefaultIncludedType()).andReturn(Included.AGGREGATED);
expect(cache.getInternalContext()).andReturn(null).anyTimes();
expect(cache.getCacheConfiguration()).andReturn(new CacheConfiguration());
expect(cache.get(doc1Resouce)).andReturn(new Element(doc1Resouce, cachedResource));
final long lastModified = doc1.lastModified();
expect(cachedResource.getResource()).andReturn(doc1Resouce);
expect(cachedResource.getLastCheckTime()).andReturn(lastModified - TimeUnit.MINUTES.toMillis(5));
expect(cachedResource.getLastLoadTime()).andReturn(lastModified - TimeUnit.MINUTES.toMillis(5));
cache.put(anyObject(Element.class));
expectLastCall();
replay(cache, cachedResource, elementsProvider);
loader.setResourceCache(cache);
loader.setResourcesElementsProvider(elementsProvider);
final CachedResource<String> cachedResource1 = loader.getResource(doc1Resouce, StringResourceBuilder.INSTANCE);
verify(cache, cachedResource, elementsProvider);
assertNotNull(cachedResource1);
final String expected = IOUtils.toString(new FileReader(doc1));
assertEquals(expected, cachedResource1.getCachedResource());
}
use of net.sf.ehcache.Ehcache in project uPortal by Jasig.
the class CachingResourceLoaderImplTest method testUncachedLoadNoDigest.
@Test
public void testUncachedLoadNoDigest() throws Exception {
final Resource doc1Resouce = new FileSystemResource(doc1);
final CachingResourceLoaderImpl loader = new CachingResourceLoaderImpl();
final Ehcache cache = createMock(Ehcache.class);
final ResourcesElementsProvider elementsProvider = createMock(ResourcesElementsProvider.class);
expect(elementsProvider.getDefaultIncludedType()).andReturn(Included.AGGREGATED);
expect(cache.getInternalContext()).andReturn(null).anyTimes();
expect(cache.getCacheConfiguration()).andReturn(new CacheConfiguration());
expect(cache.get(doc1Resouce)).andReturn(null);
expect(cache.getQuiet(doc1Resouce)).andReturn(null);
cache.put(anyObject(Element.class));
expectLastCall();
replay(cache, elementsProvider);
loader.setResourceCache(cache);
loader.setResourcesElementsProvider(elementsProvider);
final CachedResource<String> cachedResource1 = loader.getResource(doc1Resouce, StringResourceBuilder.INSTANCE);
verify(cache, elementsProvider);
assertNotNull(cachedResource1);
final String expected = IOUtils.toString(new FileReader(doc1));
assertEquals(expected, cachedResource1.getCachedResource());
}
use of net.sf.ehcache.Ehcache in project uPortal by Jasig.
the class CachingResourceLoaderImplTest method testCachedNotModified.
@Test
public void testCachedNotModified() throws Exception {
final Resource doc1Resouce = new FileSystemResource(doc1);
final CachingResourceLoaderImpl loader = new CachingResourceLoaderImpl();
final Ehcache cache = createMock(Ehcache.class);
final CachedResource<?> cachedResource = createMock(CachedResource.class);
final ResourcesElementsProvider elementsProvider = createMock(ResourcesElementsProvider.class);
expect(elementsProvider.getDefaultIncludedType()).andReturn(Included.AGGREGATED);
expect(cache.getInternalContext()).andReturn(null).anyTimes();
expect(cache.getCacheConfiguration()).andReturn(new CacheConfiguration());
final Element element = new Element("class path resource [CachingResourceLoaderImplTest_doc1.txt]", cachedResource);
expect(cache.get(doc1Resouce)).andReturn(element);
final long lastModified = doc1.lastModified();
expect(cachedResource.getResource()).andReturn(doc1Resouce);
expect(cachedResource.getLastCheckTime()).andReturn(0L);
expect(cachedResource.getLastLoadTime()).andReturn(lastModified + TimeUnit.MINUTES.toMillis(5));
expect(cachedResource.getAdditionalResources()).andReturn(Collections.EMPTY_MAP);
cachedResource.setLastCheckTime(anyLong());
cache.put(element);
expectLastCall();
replay(cache, cachedResource, elementsProvider);
loader.setResourceCache(cache);
loader.setResourcesElementsProvider(elementsProvider);
final CachedResource<String> cachedResource1 = loader.getResource(doc1Resouce, StringResourceBuilder.INSTANCE);
verify(cache, cachedResource, elementsProvider);
assertNotNull(cachedResource1);
assertTrue(cachedResource1 == cachedResource);
}
Aggregations