本文整理匯總了PHP中DeferredUpdates::setImmediateMode方法的典型用法代碼示例。如果您正苦於以下問題:PHP DeferredUpdates::setImmediateMode方法的具體用法?PHP DeferredUpdates::setImmediateMode怎麽用?PHP DeferredUpdates::setImmediateMode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DeferredUpdates
的用法示例。
在下文中一共展示了DeferredUpdates::setImmediateMode方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: restInPeace
/**
* Ends this task peacefully
* @param string $mode Use 'fast' to always skip job running
*/
public function restInPeace($mode = 'fast')
{
$lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
// Assure deferred updates are not in the main transaction
$lbFactory->commitMasterChanges(__METHOD__);
// Loosen DB query expectations since the HTTP client is unblocked
$trxProfiler = Profiler::instance()->getTransactionProfiler();
$trxProfiler->resetExpectations();
$trxProfiler->setExpectations($this->config->get('TrxProfilerLimits')['PostSend'], __METHOD__);
// Do any deferred jobs
DeferredUpdates::doUpdates('enqueue');
DeferredUpdates::setImmediateMode(true);
// Make sure any lazy jobs are pushed
JobQueueGroup::pushLazyJobs();
// Now that everything specific to this request is done,
// try to occasionally run jobs (if enabled) from the queues
if ($mode === 'normal') {
$this->triggerJobs();
}
// Log profiling data, e.g. in the database or UDP
wfLogProfilingData();
// Commit and close up!
$lbFactory->commitMasterChanges(__METHOD__);
$lbFactory->shutdown(LBFactory::SHUTDOWN_NO_CHRONPROT);
wfDebug("Request ended normally\n");
}