What exactly are they?
How can I find out which queries I have are SMF, and not? I have 58 queries which process in 0.11 seconds, and by looking at other forums thats a load.
Turn debug mode on.
Add
$db_show_debug = true;
to Settings.php
SMF will never use more than about 15-20 queries apart from on certain moderation/admin actions.
Lots of queries aren't necessarily bad (In fact we purposely split some queries into two to improve the speed compared to doing it all in one) but 58 is a hell of a lot - must be mods?
Most of those queries are probably going from modifications that were installed to the forum. I noticed you are using Tiny Portal for http://www.ruthlessintent.com/board Depending on the blocks that you add that could cause a large increase in the number of queries
Okay thanks for the tips.
Gonna start removing some of these unused mods ;)