在 java 中捕获内存缓存异常

Catching memcache exception in java

我正在使用 spymemcached-2.8.4.jar 和 jdk.1.7.

这是我的代码

try {

     MemcachedClient client = new MemcachedClient(...);

     client.set('name', 1000, 'some_name');

}catch(Exception ex){
     System.out.println("Exception occurred");
     System.out.println(ex.getMessage());
     ex.printStackTrace();

     logExceptionInDB(ex);
}

在我的扫描中,我的 memcached 机器不是 运行,因此它在控制台中打印以下异常,

java.net.ConnectException: Connection refused
    at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
    at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:735)
    at net.spy.memcached.MemcachedConnection.handleIO(MemcachedConnection.java:369)
    at net.spy.memcached.MemcachedConnection.handleIO(MemcachedConnection.java:242)
    at net.spy.memcached.MemcachedConnection.run(MemcachedConnection.java:836)

但我想抓住这个,除了将它写入数据库。如何捕获这个异常?

post中提到的异常你是抓不到的,因为它已经被spymemcached自己捕获了,你只能看日志,MemcachedConnection.java中的相关代码是:

catch (ConnectException var5) {
            this.getLogger().info("Reconnecting due to failure to connect to %s", new Object[]{node, var5});
            this.queueReconnect(node);
        }

稍后会尝试重新连接,因此请确保您的配置正确。
实际上,您可以捕获由 set 方法产生的异常:

    OperationFuture<Boolean> future = client.set("name", 1000, "some_name");
    Boolean result = future.get(50, TimeUnit.MILLISECONDS);

假设你的一次操作的超时时间是50毫秒,超时后会得到CheckedOperationTimeoutException