/**
* Returns the CacheKeyEntry for the given key.
*/
protected DistCacheEntry getDistCacheEntry(Object key)
{
DistCacheEntry cacheEntry = _entryCache.get(key);
if (cacheEntry == null) {
cacheEntry = _manager.getCacheEntry(key, _config);
_entryCache.put(key, cacheEntry);