ALF-9613: numerous changes including use of ReentrantReadWriteLock for locking and introduction of a custom cleanup job that does not delete files that are in use by the cache.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30066 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2011-08-25 15:20:08 +00:00
parent bfacbeb0b3
commit 98947fda5c
19 changed files with 1029 additions and 119 deletions

View File

@@ -59,7 +59,7 @@ public class EhCacheAdapter<K extends Serializable, V extends Object>
{
try
{
return (cache.get(key) != null);
return (cache.getQuiet(key) != null);
}
catch (CacheException e)
{