builder.locking().isolationLevel(IsolationLevel.REPEATABLE_READ).writeSkewCheck(false)
.lockAcquisitionTimeout(0);
builder.clustering().hash().numOwners(1);
builder.transaction().recovery().disable();
extendedStatisticInterceptor = new ExtendedStatisticInterceptor();
builder.customInterceptors().addInterceptor().interceptor(extendedStatisticInterceptor)
.after(TxInterceptor.class);
return TestCacheManagerFactory.createCacheManager(builder);
}
private void testStats(WriteOperation operation, int numOfWriteTx, int numOfWrites, int numOfReadsPerWriteTx,