nate wrote:
> All model files are loaded, but only the required model classes are
> constructed. Besides that, this is typically the one of the
> lower-overhead operations in the request. The best thing to focus on
> are your views and view caching.
I added to AppModel class this function
function __construct($id = false, $table = null, $ds = null) {
parent::__construct();
echo $this->name . '<br />';
}
after request "/" I saw names of all my models. That's mean that all
those models were constructed, isn't it? I did not mentioned that all
models are in releations. Regarding to views, I use caching.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---