Ett sätt är att lagra ett ordantal i sfinxindexet som attribut.
sql_field_str2wordcount är ett bra sätt att göra dettahttp://sphinxsearch.com /docs/current.html#conf-sql-field-str2wordcount
Du kan sedan använda den som grund för ett filter
$cl->setMatchMode(SPH_MATCH_EXTENDED);
$cl->setRankingMode(SPH_RANK_WORDCOUNT);
$cl->setSelect("*,IF(@weight=>titles,1,0) as myfilter");
$cl->setFilter("myfilter",array(1));
$cl->Query("\"$search_key\"/1",'Title');
(Tyvärr, jag vet inte hur man gör detta i tänkande-sfinx speciellt. Ovanstående är PHP API-syntaxen)
Redigera, kolla http://freelancing-god.github.com/ts/ sv/searching.html och http://freelancing-god.github.com/ts/ sv/common_issues.html#or_attributes
ser ut att kunna vara något i stil med
with_display = "*, IF(@weight=>titles,1,0) AS display"
Title.search 'search_key/3',
:match_mode => :extended,
:rank_mode => :wordcount,
:sphinx_select => with_display,
:with => {'display' => 1}