public boolean delete(String s) { try { return this._client.delete(s); } catch (Exception e) { LOG.info(e.getMessage()); } return false; }
public <T> boolean cas(String key, int i, CASOperation<T> tcasOperation) { try { return this._client.cas(key, i, tcasOperation); } catch (Exception e) { LOG.info(e.getMessage()); } return false; }
public boolean cas(String key, int i, Object o, long l) { try { return this._client.cas(key, i, o, l); } catch (Exception e) { LOG.info(e.getMessage()); } return false; }
public boolean add(String key, int i, Object o) { try { return this._client.add(key, i, o); } catch (Exception e) { LOG.info(e.getMessage()); } return false; }
public <T> net.rubyeye.xmemcached.GetsResponse<T> gets(String key, Transcoder transcoder) { try { return this._client.gets(key, transcoder); } catch (Exception e) { LOG.info(e.getMessage()); } return null; }
public Object get(String s) { try { return this._client.get(s); } catch (Exception e) { LOG.info(e.getMessage()); } return null; }