我假设doctrine2会优化我的查询,以便为任何数据库事务提供最佳性能。
我在数据库表中插入了大约500条记录,我注意到它创建了500多个查询来插入记录(每条记录一个查询),我想知道,为什么不会使用多个学说插入以一次性插入所有记录,这不会减少负载并优化查询?我是否从学说中遗漏了这种行为?
以下是我用于插入的代码:
$content = json_decode($response->getBody());
$em = $this->getServiceLocator()->get('doctrine.entitymanager.orm_default');
foreach ($content as $value) {
$log = new log();
$log->fromArray($value);
$em->persist($log);
}
$em->flush();
UPDATE1:
以下是fromArray()的内容请求,此函数的目的是基本上将值合并到数组中的类属性:
/**
* Map parameters with class property.
*
* @param $array array
* @access public
* @return $this
*/
public function fromArray(array $array)
{
foreach ($array as $property => $value) {
$method = 'set'.ucwords($property);
$this->$method($value);
}
return $this;
}
以下是$content
的内容:
Array
(
[0] => stdClass Object
(
[id] => 111
[guid] => aaaa-bbbb-cccc
[wid] => 100
[pid] => 101
[start] => 2014-11-22T12:44:44+00:00
[stop] => 2014-11-22T15:23:11+00:00
[duration] => 9507
[description] => Log description
[tags] => Array
(
[0] => test
)
[at] => 2014-11-24T07:28:09+00:00
[uid] => 51
)
[1] => stdClass Object
(
[id] => 112
[guid] => dddd-eee
[wid] => 100
[pid] => 101
[billable] =>
[start] => 2014-11-22T15:35:07+00:00
[stop] => 2014-11-22T15:45:21+00:00
[duration] => 614
[description] => Lorem description
[tags] => Array
(
[0] => php
[1] => pm
)
[at] => 2014-11-24T04:35:30+00:00
[uid] => 51
)
)
答案 0 :(得分:2)
请查看this文件。在每次迭代中,Doctrine都会为您创建一个insert ...
查询,毕竟,当您调用flush()
时,Doctrine会在循环内一次将所有这些插入查询发送到db(使用{{1}之类的机制}})
在您的情况下,这些查询中的任何一个都是插入的,因此,正如我在评论中所述,您的案例中没有异常情况。 ORM可能不适合所有情况。