Quote:
Originally Posted by Immortal
Sorry I'm ignorant when it comes to vB coding. Could you explain a bit more please?
|
For example on forumdisplay.php, you are issuing a query to get the titles for all threadids found.
But, those are all the threads being displayed, so this information already has been queried before, which makes this unnecessary overhead.
The threadids, titless and forumids are available in Hoo0k threadbit_process for example (could also use threadbit_display if it's just for forumdisplay.php).
So you could build an array there, and use this to lookup the titles in global_complete to save the query.
Same goes for showthread.php, abd probably other pages as well.
Especially querying the forum table from forum titles is wasteful, as the forumcache does contain this information - and is available on every page.
Quote:
Well, SEs can't search so I really didn't find this necessary to rewrite.
|
True. But it might help AdSense