when i use cake 1.1 i think it slow perfomnace is temporary.
Now i try cake 1.2 RC 1, simple code (look at the end post). It was
terribly, time 1.8474 sec.
Round values after many refresh page is 2 sec.
My machine - Celeron 2.4 Ghz, 521 RAM. WinXP.
I try xdebug, i see many time goes to App::import App::__load
functions
class TestikController extends AppController
{
var $name = 'Testik';
function index()
{
$items = $this->Testik->findAll();
$this->set('items',$items);
}
}
class Testik extends AppModel
{
var $name = 'Testik';
var $useTable = 'testik';
}
view:
<?print_r($items);?>
layout: default.ctp
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" 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?hl=en
-~----------~----~----~----~------~----~------~--~---