예제 #1
0
 /**
  * Удаление значения из кэша.
  * @param $key
  * @return bool
  */
 public static function delete($key)
 {
     unset(self::$storage_arr[$key]);
     return CacheMemcache::delete($key);
 }