is it possible with sphinx to sort a result like this mysql query? order by lang='2' desc , time_popular desc so get the latest documents with lang=2 in fist position. I really need your help :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes. Look at this page http://www.sphinxsearch.com/docs/current.html#sorting-modes and particularly SPH_SORT_EXTENDED. Assuming you have attributes for them both: sql_attr_uint = lang sql_attr_timestamp = time_popular Then using the API for example: $cl->SetSortMode ( SPH_SORT_EXTENDED, "lang desc, time_popular desc" ); |
|||
|
|
|
You could use filer along with order like
Hope it helps. |
|||
|
|