Profiling my applications give me some good insights about where our application is having bottlenecks. The slow methods within cake core are: 1. Loading models takes a lot of the time (85% of the total time), specifically at Model::__createLink 2. FormHelper::select with large lists
Is there any way to limit the model loading? maybe caching the object the first time they are loaded? Or do i have to re-engenieer my relations (cake's model relations) to fit the performance requirement? We could use bindModel all over the application but that's not the idea. On Mar 6, 9:07 am, Miles J <[email protected]> wrote: > 1000 rows is nothing, try 100,000 rows, then that would possibly > stress test the database and models. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
