private Date getUpdateTime(String rid) {
   String key = Utility.getMemcachedKey(ResourceAll.class, rid, "updatetime");
   try {
     Date updateTime = (Date) memcached.getAndSaveLocalMedium(key);
     return updateTime;
   } catch (Exception e) {
     return null;
   }
 }