public function PHPExcel_CachedObjectStorage_Memcache::deleteCacheData in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php \PHPExcel_CachedObjectStorage_Memcache::deleteCacheData()
Delete a cell in cache identified by coordinate address
Parameters
string $pCoord Coordinate address of the cell to delete:
Throws
Overrides PHPExcel_CachedObjectStorage_CacheBase::deleteCacheData
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Memcache.php, line 189
Class
- PHPExcel_CachedObjectStorage_Memcache
- PHPExcel_CachedObjectStorage_Memcache
Code
public function deleteCacheData($pCoord) {
// Delete the entry from Memcache
$this->_memcache
->delete($this->_cachePrefix . $pCoord . '.cache');
// Delete the entry from our cell address array
parent::deleteCacheData($pCoord);
}