@Override
 public int size() {
   try {
     Long longSize = new Long(cache.dbSize());
     return longSize.intValue();
   } catch (Throwable t) {
     throw new CacheException(t);
   }
 }