Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 0c8cdea6 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix(Handler): no internal instance cache

For orders this is not needed. the internal instance cache causes more problems
due to the mix between uuid and id cache. the internal cache on uuid / id was therefore removed.
Orders have the data freshly fetched from the db anyway. therefore unnecessary.
In addition, a wrong order object was repeatedly retrieved when sending mail.
Übergeordneter c002e924
No related branches found
No related tags found
2 Merge Requests!123fix(Handler): no internal instance cache,!117Update 'next-3.x' with latest changes from 'main'
Pipeline #11724 mit Warnungen bestanden mit Phase
in 3 Minuten und 26 Sekunden
......@@ -42,11 +42,6 @@ class Handler extends Singleton
*/
protected array $cache = [];
/**
* @var array
*/
protected array $orders = [];
/**
* Return all order process Provider
*
......@@ -103,22 +98,6 @@ public function getOrderProcessProvider(): array
return $result;
}
/**
* Remove an order instance
*
* @param $orderId
*/
public function removeFromInstanceCache($orderId): void
{
if (isset($this->orders[$orderId])) {
unset($this->orders[$orderId]);
}
if (isset($this->cache[$orderId])) {
unset($this->cache[$orderId]);
}
}
//region Order
/**
......@@ -142,11 +121,7 @@ public function table(): string
*/
public function get(int|string $orderId): Order
{
if (!isset($this->orders[$orderId])) {
$this->orders[$orderId] = new Order($orderId);
}
return $this->orders[$orderId];
return new Order($orderId);
}
/**
......@@ -615,11 +590,7 @@ public function tableOrderProcess(): string
*/
public function getOrderInProcess($orderId): OrderInProcess
{
if (!isset($this->cache[$orderId])) {
$this->cache[$orderId] = new OrderInProcess($orderId);
}
return $this->cache[$orderId];
return new OrderInProcess($orderId);
}
/**
......
......@@ -71,7 +71,6 @@ public function refresh(): void
}
try {
Handler::getInstance()->removeFromInstanceCache($this->orderId);
$Order = Handler::getInstance()->get($this->orderId);
if (!$Order->isSuccessful()) {
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren