本文整理汇总了PHP中eZ\Publish\Core\Persistence\Database\DatabaseHandler::commit方法的典型用法代码示例。如果您正苦于以下问题:PHP DatabaseHandler::commit方法的具体用法?PHP DatabaseHandler::commit怎么用?PHP DatabaseHandler::commit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZ\Publish\Core\Persistence\Database\DatabaseHandler
的用法示例。
在下文中一共展示了DatabaseHandler::commit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: commit
/**
* Commit transaction.
*
* Commit transaction, or throw exceptions if no transactions has been started.
*
* @throws \RuntimeException If no transaction has been started
*/
public function commit()
{
try {
$this->dbHandler->commit();
} catch (Exception $e) {
throw new RuntimeException($e->getMessage(), 0, $e);
}
}
示例2: purge
/**
* Remove entire search index.
*/
public function purge()
{
$this->dbHandler->beginTransaction();
$query = $this->dbHandler->createDeleteQuery();
$tables = ['ezsearch_object_word_link', 'ezsearch_return_count', 'ezsearch_search_phrase', 'ezsearch_word'];
foreach ($tables as $tbl) {
$query->deleteFrom($tbl);
$stmt = $query->prepare();
$stmt->execute();
}
$this->dbHandler->commit();
}
示例3: buildWordIDArray
/**
* Build WordIDArray and update ezsearch_word table.
*
* Ported from the legacy code
*
* @see https://github.com/ezsystems/ezpublish-legacy/blob/master/kernel/search/plugins/ezsearchengine/ezsearchengine.php#L155
*
* @param array $indexArrayOnlyWords words for object to add
*
* @return array wordIDArray
*/
private function buildWordIDArray(array $indexArrayOnlyWords)
{
$wordCount = count($indexArrayOnlyWords);
$wordIDArray = [];
$wordArray = [];
// store the words in the index and remember the ID
$this->dbHandler->beginTransaction();
for ($arrayCount = 0; $arrayCount < $wordCount; $arrayCount += 500) {
// Fetch already indexed words from database
$wordArrayChuck = array_slice($indexArrayOnlyWords, $arrayCount, 500);
$wordRes = $this->searchIndex->getWords($wordArrayChuck);
// Build a has of the existing words
$wordResCount = count($wordRes);
$existingWordArray = [];
for ($i = 0; $i < $wordResCount; ++$i) {
$wordIDArray[] = $wordRes[$i]['id'];
$existingWordArray[] = $wordRes[$i]['word'];
$wordArray[$wordRes[$i]['word']] = $wordRes[$i]['id'];
}
// Update the object count of existing words by one
if (count($wordIDArray) > 0) {
$this->searchIndex->incrementWordObjectCount($wordIDArray);
}
// Insert if there is any news words
$newWordArray = array_diff($wordArrayChuck, $existingWordArray);
if (count($newWordArray) > 0) {
$this->searchIndex->addWords($newWordArray);
$newWordRes = $this->searchIndex->getWords($newWordArray);
$newWordCount = count($newWordRes);
for ($i = 0; $i < $newWordCount; ++$i) {
$wordLowercase = $this->transformationProcessor->transformByGroup($newWordRes[$i]['word'], 'lowercase');
$wordArray[$wordLowercase] = $newWordRes[$i]['id'];
}
}
}
$this->dbHandler->commit();
return $wordArray;
}