SockIOPool pool = SockIOPool.getInstance();
pool.setMinConn(10);
pool.setMaxConn(maxConn);
pool.setMaxIdle(60 * 60 * 1000);
pool.setServers(servers.split(" "));
pool.initialize();
MemCachedClient memcachedClient = new MemCachedClient();
memcachedClient.setCompressThreshold(16 * 1024);
System.out.println("Java-MemCached startup");
warmUp(memcachedClient);