Skip to content
Extraits de code Groupes Projets
Valider e20bd1b4 rédigé par Matthieu Aubry's avatar Matthieu Aubry
Parcourir les fichiers

Only use transactions for bulk requests (more than one request)

parent e67b57ca
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -235,17 +235,17 @@ class Tracker ...@@ -235,17 +235,17 @@ class Tracker
$this->initOutputBuffer(); $this->initOutputBuffer();
if (!empty($this->requests)) { if (!empty($this->requests)) {
$xid = self::getDatabase()->beginTransaction(); $this->beginTransaction();
try { try {
foreach ($this->requests as $params) { foreach ($this->requests as $params) {
$isAuthenticated = $this->trackRequest($params, $tokenAuth); $isAuthenticated = $this->trackRequest($params, $tokenAuth);
} }
$this->runScheduledTasksIfAllowed($isAuthenticated); $this->runScheduledTasksIfAllowed($isAuthenticated);
self::getDatabase()->commit($xid); $this->commitTransaction();
} catch(DbException $e) { } catch(DbException $e) {
Common::printDebug($e->getMessage()); Common::printDebug($e->getMessage());
self::getDatabase()->rollback($xid); $this->rollbackTransaction();
} }
} else { } else {
...@@ -272,6 +272,47 @@ class Tracker ...@@ -272,6 +272,47 @@ class Tracker
return ob_get_contents(); return ob_get_contents();
} }
protected function beginTransaction()
{
$this->transactionId = null;
if(!$this->shouldUseTransactions()) {
return;
}
$this->transactionId = self::getDatabase()->beginTransaction();
}
protected function commitTransaction()
{
if(empty($this->transactionId)) {
return;
}
self::getDatabase()->commit($this->transactionId);
}
protected function rollbackTransaction()
{
if(empty($this->transactionId)) {
return;
}
self::getDatabase()->rollback($this->transactionId);
}
/**
* @return bool
*/
protected function shouldUseTransactions()
{
$isBulkRequest = count($this->requests) > 1;
return $isBulkRequest && $this->isTransactionSupported();
}
/**
* @return bool
*/
protected function isTransactionSupported()
{
return (bool) Config::getInstance()->Tracker['bulk_requests_use_transaction'];
}
protected function shouldRunScheduledTasks() protected function shouldRunScheduledTasks()
{ {
...@@ -869,4 +910,6 @@ class Tracker ...@@ -869,4 +910,6 @@ class Tracker
{ {
return file_get_contents("php://input"); return file_get_contents("php://input");
} }
} }
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter