The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
||||
|
||||
![]()
Using EXPLAIN really helps.
But a really simple thing to remember is if you are using a column primarily in joins / where clauses, such as a 'userid' column in another table, then it needs one. Well, doesn't need - but it will speed up the query significantly. Just like in a book, finding something using an index is FAR faster than reading every page looking for that word. Code:
SELECT * FROM jokes WHERE userid = 1; Code:
SELECT * FROM jokes LEFT JOIN users on (jokes.userid = users.userid); As eik... said, the same thing goes for sorting. If you are often sorting by title (select * from jokes order by title asc) then you may want to consider indexing it. This is assuming the table has several other columns. The larger an index becomes, the less useful it is (relative to actual row size). If you have some time, watch this MySQL tuning vid, http://video.google.com/videoplay?do...24540025172110 I remember it being quite helpful when I watched it last spring. Edit, Yes clicking on the Explain link will show you the EXPLAIN info for each query. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|