Example #1
0
 public void decrWithNoReply(String key, long delta) {
   try {
     memcachedClient.decrWithNoReply(key, delta);
   } catch (Exception e) {
     throw new IllegalStateException(e.getMessage(), e);
   }
 }