Quote:
Originally Posted by ryan_mcgreal
Why not just cut the search button over so it sends a get request to a Google search?
At the same time, I find it bizarre that if I want to see a list of my own comments, the site would generate that via a search. Why not just a query along the lines of:
select * from comments where username = 'ryan_mcgreal' order by comment_id desc
With decent indexing and possibly pagination, that really shouldn't put much strain on the server.
|
It is likely that there is a function that uses a query similar to that, it's just that they located it on the search page. I would imagine it was some of the queries for searching through posts that were causing the strain on the server (for example if it was full text searching).
The feature to disable searches in vBulletin might disable the entire "search.php" page, therefore rendering any of the other functions on the page useless. That's just a guess on my part though, I don't use vBulletin (open source is the way to go

)
Either way, the site is MUCH quicker now that they have it disabled.