Example #1
0
 public Object getAndTouch(String key, int newExp) {
   try {
     return memcachedClient.getAndTouch(key, newExp);
   } catch (Exception e) {
     throw new IllegalStateException(e.getMessage(), e);
   }
 }