Quote:
Originally Posted by Freddie Bingham
Here is a small 3.0.2 optimization to search.php?do=getnew / search.php?do=getdaily that you can make a noticeable impact on your load.
edit search.php, find:
PHP Code:
ORDER BY lastpost DESC
Above this, place:
PHP Code:
AND sticky IN(0,1)
For example on vb.com, we went from doing a scan of 107000 thread rows on every getnew/getdaily (that wasn't cached in search.php) to a scan of 188 rows.
|
sounds good, but ... could you explain for me how this supposed to work? all threads has sticky value of (0,1), isnt it?
I dont see the exclussion in this condition