// YII_DEBUG => false
// No one of ARModel didn't has behaviors
// PHP version is 5.2.13 (apache/2.2.14 win xp sp3)
$db = Yii::app()->getDb();
$i=20;
echo "<pre>";
while($i--){
echo memory_get_usage(true)."\n";
// flush connection to prevent PDO leaks
$db->setActive(false);
$db->setActive(true);
SomeArRecord::model()->findAll(array(
'with'=>array(
'related' => array(
'with' => array(
'related',
'related2',
),
),
'related2',
),
'limit'=>1000,
));
}output:
2359296 9699328 12845056 16252928 19398656 22544384 25952256 29097984 32243712 35389440 38535168 42467328 45613056 48758784 51904512 55050240 58195968 61341696
Any suggestions?

Help



-








