Ill mention a few more things:

- Install the DebugKit. It has load timers for everything, the
controller, the views, etc so you can figure out whats taking the
longest.

- Look at all your queries and see what is taking the longest, and see
if you can lower what fields/relations are returned to shave off a few
milliseconds.

- Use containable compared to bind/unbind. Binding can be extremely
slow, because when you bind a model, that model has to load all its
relation models, and then that one does also, down and down. So it
could be very slow, containable disregards all this unless need be.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to