function delete($key)
 {
     try {
         $this->connect();
         $this->cache->delete($key);
     } catch (SharedanceException $e) {
         debug($e);
         return false;
     }
     return true;
 }