@Before
 public void setUp() throws JAXBException {
   cacheManager = new MemcachedManager();
   cacheManager.setDefaultTtl(60); // default time to live
   cacheManager.setHosts("localhost:11211"); // list of memcached hosts
   cacheManager.setCacheTranscoder(CacheTranscoder.KRYO);
   cacheManager.setKryo(new Kryo());
 }