All queries very fast, except one
Moderator: General Moderators
Re: All queries very fast, except one
Thanks. That is most helpful.
Re: All queries very fast, except one
You may want to enable output buffering in php.ini if it's not enabled already. Without buffering, php has to wait for client to acknowledge data it receives as PHP generates the output. Basically, every echo "something" sends "something" to the browser and waits for confirmation.
Be warned that it may cause memory usage to jump up, in which case you will probably want not to just set it to 'On' but tweak the value using specific buffer size. Something like 128KB, or even 1MB should probably suffice.
Be warned that it may cause memory usage to jump up, in which case you will probably want not to just set it to 'On' but tweak the value using specific buffer size. Something like 128KB, or even 1MB should probably suffice.