public static boolean set(String key, Integer expire, Object value) {
   return cachedClient.set(key, expire, value);
 }
 public static boolean set(String key, Object value) {
   return cachedClient.set(key, value);
 }