Quote:
Originally Posted by Lynne
It would be interesting to see a list of default queries per page. I realize for some pages it would be a range based on the options you have turned on, but it might help some users. (ie. if the normal amount of queries for a thread page is just 18 and some guy is getting 60, he may have a clue that perhaps his use of queries on the page aren't very efficient.)
|
best way to do so is by having a default/clean vBulletin, with 100 threads, 10 replies in each, 10 users with avatars etc... open the debug mode, and visit your site...
usually, the number of queries for plain site is about 10 to 15 per page... vBulletin is built to spare on dB queries, but the number is not so important.. if the queries are well built, they are more efficient. a lot of modification use no structural queries, simply by "SELECT ALL FROM TABLE" which is stupid and can be slower than specific selects...