示例#1
0
文件: APC.php 项目: Garybaldy/rotio
 /**
  *	Delete a cell in cache identified by coordinate address
  *
  *	@param	string			$pCoord		Coordinate address of the cell to delete
  *	@throws	Exception
  */
 public function deleteCacheData($pCoord)
 {
     //	Delete the entry from APC
     apc_delete($this->_cachePrefix . $pCoord . '.cache');
     //	Delete the entry from our cell address array
     parent::deleteCacheData($pCoord);
 }