0
public class MemCacheClientInit {
static MemcachedClient mcc = null;
static String ipAdderss = "127.0.0.1";
static int port = 11211;
public static boolean isMemCacheInit = false;
public static MemcachedClient getInstance() {
if (mcc == null) {
try {
isMemCacheInit = initMemServer();
mcc = new MemcachedClient(new InetSocketAddress(ipAdderss, port));
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return mcc;
}
private static boolean initMemServer() {
try {
String[] servers = {"localhost:11211",};
Integer[] weights = {1};
SchoonerSockIOPool pool = SchoonerSockIOPool.getInstance();
pool.setServers(servers);
pool.setWeights(weights);
pool.setInitConn(5);
pool.setMinConn(5);
pool.setMaxConn(250);
pool.setMaxIdle(1000 * 60 * 60 * 6);
pool.initialize();
pool.setHashingAlg(SchoonerSockIOPool.NEW_COMPAT_HASH);
return true;
}
catch (Exception ex) {
return false;
}
}
}
我直接從我的DAO運行該代碼,並同時獲得的SchoonerSockIOPool
比如,它是扔invocationTarget
異常的內存緩存中InitMemServer
方法設置對象,在上面的代碼片斷。如何在java web應用程序中特別使用在tomcat上運行的Struts 2中的memcached客戶端?
堆棧跟蹤是否可用?然後發佈問題。 –