Thanks, Alexey, on this. The "magic_quotes_gpc" item was the first thing mentioned in the symfony book's performance section - changing that setting in php.ini made a significant difference in performance.
On 11/14/07, Wicked <[EMAIL PROTECTED]> wrote: > > > 1) I always thought that social-networking type sites are main target > for most effective caching, taking into acount their reads/writes > ratio. There are a few caching layers, so I think you should give it a > try. > 2) View can be slow if you output there some model that hasn't been > pulled from the db, so it's pulled while view works. > 3) "I've made sure magic_quotes_gpc is off." -- almost has no sence. > 4) "I've even put up an alternate layout template - with no helpers, > no database calls, and no processing in the action; still seems slow." > -- was it empty and still took a lot of time? > > > On 14 нояб, 06:34, "Brian Hoke" <[EMAIL PROTECTED]> wrote: > > I'm working to identify and improve performance issues for a symfony app > > hosted on a shared host (at MediaTemple). The local (my laptop) > development > > version runs great - there are clearly some actions which, under a heavy > > database load, will run slowly - but the vast majority of the site runs > > great. The hosted version, however, not so much: every page - regardless > of > > the degree to which the page is heavily database- or > processing-dependent - > > takes a noticeably-long time to load. > > > > The frontend_dev.php "timers" tool usually points to the view (the last > > item) as the culprit, but various actions seem to contribute, too. The > > application is a social-networking type site, so caching really isn't an > > option, given that there is minimal consistent design and all content is > > dynamic. I've even put up an alternate layout template - with no > helpers, no > > database calls, and no processing in the action; still seems slow. > > > > The MediaTemple host uses PHP 5.2.1. I've made sure magic_quotes_gpc is > off. > > Anything else folks can point me toward, in general, that might make a > > difference? Much obliged for any help. > > > > ~Brian > > > > -- > > Brian P. Hoke > > Bentley & Hoke LLC > > 315-446-2300www.bentleyhoke.com > > > > > -- Brian P. Hoke Bentley & Hoke LLC 315-446-2300 www.bentleyhoke.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" 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/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
