In my index I've 2 textfield: title & content, and one attribute date_publish.
I want order by
title relevance, publication age, content relevance
With Sphinx 2.0.2 AND SphinxSE
how can do it ? search mode -> expr ? rank_mode -> expr ?
I'm lost..
actually my idea is
bm25(@title)*1000+(1000/ (now()-date_publish)/86400) + bm25(@content)/10
(Note, all this still in limbo I would refine my question withh your comments and results of my experiences ;-)