{
LOG.debug( "Using the custom configured cache size of {} for {} partition", cacheSize, id );
}
// Now, create the entry cache for this partition
recMan = new CacheRecordManager( base, new MRU( cacheSize ) );
// Create the master table (the table containing all the entries)
master = new JdbmMasterTable<Entry>( recMan, schemaManager );
// -------------------------------------------------------------------