I\'m having problems with a batch insertion of objects into a database using symfony 1.4 and doctrine 1.2.
My model has a certain kind of object called \"Sector\", e
Try to break circular reference which usually cause memory leaks with
$cupo->save(); $cupo->free(); //this call
as described in Doctrine manual.