// add the key to the attrNameSet
log.debug( "Adding to attrNameSet " );
getCacheManager();
GroupCache cache = ( GroupCache ) cacheMgr.getCache( cb.getCacheName() );
if ( log.isDebugEnabled() )
{
log.debug( "cache = " + cache );
}
cache.updateGroupAttrNameSet( ( GroupAttrName ) cb.getKey(), ICache.REMOTE_INVOKATION, false );
log.debug( "Adding to attrNameSet " );
}
else
{
if ( log.isDebugEnabled() )
{
log.debug( "PUTTING ELEMENT FROM REMOTE, ( updating ) " );
log.debug( "cb = " + cb );
puts++;
if ( puts % 100 == 0 )
{
log.debug( "puts = " + puts );
}
}
getCacheManager();
ICompositeCache cache = ( ICompositeCache ) cacheMgr.getCache( irca.getCacheName() );
cache.update( cb, ICache.REMOTE_INVOKATION );
}
}
else