return;
}
if ( set.size() > numDupLimit )
{
BTree tree = convertToBTree( set );
BTreeRedirect redirect = new BTreeRedirect( tree.getRecordId() );
bt.insert( key, ( V ) BTreeRedirectMarshaller.INSTANCE.serialize( redirect ), true );
if ( LOG.isDebugEnabled() )
{
LOG.debug( "<--- Add new BTREE {} = {}", name, key );
}
}
else
{
bt.insert( key, ( V ) marshaller.serialize( set ), true );
if ( LOG.isDebugEnabled() )
{
LOG.debug( "<--- Add AVL {} = {}", name, key );
}
}
count++;
commit( recMan );
return;
}
BTree tree = getBTree( values.getBTreeRedirect() );
replaced = ( V ) tree.insert( value, StringConstants.EMPTY_BYTES, true );
if ( replaced == null )
{
count++;
}