本文整理汇总了PHP中Pimcore\Model\Cache::removeWriteLock方法的典型用法代码示例。如果您正苦于以下问题:PHP Cache::removeWriteLock方法的具体用法?PHP Cache::removeWriteLock怎么用?PHP Cache::removeWriteLock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pimcore\Model\Cache
的用法示例。
在下文中一共展示了Cache::removeWriteLock方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: shutdown
/**
* this method is called with register_shutdown_function() and writes all data queued into the cache
* @static
* @return void
*/
public static function shutdown()
{
// set inShutdown to true so that the output-buffer knows that he is allowed to send the headers
self::$inShutdown = true;
// flush all custom output buffers
while (@ob_end_flush()) {
}
// flush everything
flush();
if (function_exists("fastcgi_finish_request")) {
fastcgi_finish_request();
}
// clear tags scheduled for the shutdown
Cache::clearTagsOnShutdown();
// write collected items to cache backend and remove the write lock
Cache::write();
Cache::removeWriteLock();
// release all open locks from this process
Model\Tool\Lock::releaseAll();
// disable logging - otherwise this will cause problems in the ongoing shutdown process (session write, __destruct(), ...)
\Logger::resetLoggers();
}