private CompatibilityCacheFactory<String, Object> cacheFactory1;
private CompatibilityCacheFactory<String, Object> cacheFactory2;
@BeforeClass
protected void setup() throws Exception {
cacheFactory1 = new CompatibilityCacheFactory<String, Object>(cacheName, new SpyMemcachedCompatibleMarshaller(), CacheMode.DIST_SYNC, numOwners).setup();
cacheFactory2 = new CompatibilityCacheFactory<String, Object>(cacheName, new SpyMemcachedCompatibleMarshaller(), CacheMode.DIST_SYNC, numOwners)
.setup(cacheFactory1.getMemcachedPort(), 100);
}