Symfony 1.4改进了doctrine save()方法

时间:2012-06-09 14:20:01

标签: performance symfony1 doctrine symfony-1.4 doctrine-1.2

我的数据库中有500个条目。在我的后端,我有行动。例如:

 public function executeMyAction(sfWebRequest $request) {

 // Get some data from table
 $templates = Doctrine_Core::getTable('SeoTemplates')->findOneByEntity('training');

//Get data from other table(500 items)
 $trainings = Doctrine::getTable('Training')->getTraining();

  // Make some operations with data
  foreach ($trainings as $training) {

       $training->setSomeValue1('some_data');
       $training->setSomeValue2('some_data');
       $training->setSomeValue2('some_data');

  }

// Problem part (try to save)
$trainings->save();
}

save()执行了很长时间。如何解决这个问题呢?有可能吗?

在我的问题部分我知道所有错误致命错误: 超过30秒的最长执行时间

1 个答案:

答案 0 :(得分:3)

保存每条记录而不是集合

$templates = Doctrine_Core::getTable('SeoTemplates')->findOneByEntity('training');
$trainings = Doctrine::getTable('Training')->getTraining();
foreach ($trainings as $training) {
   $training->setSomeValue1('some_data');
   $training->setSomeValue2('some_data');
   $training->setSomeValue2('some_data');
   $training->save();
}

或使用Doctrine使用查询更新记录

$q = Doctrine_Query::create()
   ->update('TABLE')
   ->set($val1, '?', $val1)
   ->set($val2, '?', $val2)
   ->set($val3, '?', $val3)
   ->where('id = ?', $id)
   ->execute();