Je suis paresseux en chargeant mes classes Doctrine dans mon site web. L'analyse comparative a montré que Doctrine::loadModels('models')
prend plus de 100 ms pour se terminer ! J'ai 118 tables au total, mais quand même...
attribut de réglage pour un chargement conservateur :
Doctrine_Manager::getInstance()->setAttribute(Doctrine::ATTR_MODEL_LOADING, Doctrine::MODEL_LOADING_CONSERVATIVE);
l'exécution de la partie benchmark :
$CI->benchmark->mark('Doctrineload_start');
Doctrine::loadModels(APPPATH.'models');
$CI->benchmark->mark('Doctrineload_end');
Et le résultat :
Doctrineload 0.1085 (seconds)
Est-ce "normal" ?
"contexte" :
Loading Time Base Classes 0.0233
Doctrineinit 0.0435 //doctrine_pi.php file, doctrine configuration + db account
Doctrineload 0.1085
Masterpageset 0.0001
Userload 0.1208 //1 db query
Masterpageaddcontent 0.1565 //1 db query, loading view with some <?=?> php parsing
Masterpageshow 0.0203 //loading view
Controller Execution Time ( Home / Index ) 0.3591
Total Execution Time 0.3826