Performance fix on Sphinx search results: use id instead of created timestamp for reverse date sorting; should give same result but doesn't trigger a filesort.
This commit is contained in:
parent
6b134ae4c7
commit
b1ffbf17d3
|
@ -75,7 +75,7 @@ class SphinxSearch extends SearchEngine
|
||||||
{
|
{
|
||||||
if ('chron' === $mode) {
|
if ('chron' === $mode) {
|
||||||
$this->sphinx->SetSortMode(SPH_SORT_ATTR_DESC, 'created_ts');
|
$this->sphinx->SetSortMode(SPH_SORT_ATTR_DESC, 'created_ts');
|
||||||
return $this->target->orderBy('created desc');
|
return $this->target->orderBy('id desc');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user