gpt4 book ai didi

doctrine-orm - ZF2 + Doctrine2 : Server has gone away - how to jog an old connection?

转载 作者:行者123 更新时间:2023-12-02 22:10:40 27 4
gpt4 key购买 nike

预先感谢您的帮助。

我想知道是否有人很快知道在实体存储库死机时调用哪些函数来启动它的重新连接。我正在运行一些作业,通过 ZF2 CLI 路由可能需要超过 wait_timeout 的时间长度,不幸的是,ER 的连接在需要使用时(作业完成时)终止。

需要:

// do the long job

$sl = $this->getServiceLocator();
$mapper = $sl->get( 'doctrine_object_mapper' );
if( !$mapper->getRepository()->isAlive() ) // something like so
$mapper->getRepository()->wakeTheHellUp();

这些不是正确的方法名称吗! ;)

再次感谢。

最佳答案

这是一个 fairly common problem具有长时间运行的进程和连接。

解决方案是检索 ORM 的 DBAL connection并在连接丢失时重新创建它(确保它在交易期间没有死亡)。这显然很烦人,但这是目前唯一的方法:

// note - you need a ServiceManager here, not just a generic service locator
$entityMAnager = $serviceManager->get('entity_manager');
$connection = $entityManager->getConnection();

try {
// dummy query
$connection->query('SELECT 1');
} catch (\Doctrine\DBAL\DBALException $e) {
if ($connection->getTransactionIsolation()) {
// failed in the middle of a transaction - this is serious!
throw $e;
}

// force instantiation of a new entity manager
$entityManager = $serviceManager->create('entity_manager');
}

$this->doFoo($entityManager);

关于doctrine-orm - ZF2 + Doctrine2 : Server has gone away - how to jog an old connection?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15362070/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com