not wait for cache record

This commit is contained in:
yggverse 2024-07-22 19:18:42 +03:00
parent 5b020095a3
commit 801b400b6c

View file

@ -247,6 +247,11 @@ abstract class Connection implements \Yggverse\Yoda\Interface\Model\Connection
public function cache( public function cache(
string $request string $request
): void ): void
{
// Not wait for database record
$pid = pcntl_fork();
if ($pid === 0)
{ {
$this->_database->renewCache( $this->_database->renewCache(
$request, $request,
@ -256,6 +261,9 @@ abstract class Connection implements \Yggverse\Yoda\Interface\Model\Connection
$this->getTooltip(), $this->getTooltip(),
$this->getData() $this->getData()
); );
exit;
}
} }
public function reset(): void public function reset(): void