this.properties);
XmemcachedClientFactory clientFactory = new XmemcachedClientFactory(
propertiesHelper);
Memcache cache = clientFactory.createMemcacheClient();
testCache(cache);
cache.shutdown();
}
private void testCache(Memcache cache) {
cache.set("a", 0, 1);
assertEquals(1, cache.get("a"));