Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何为 sphinx 搜索设置列优先级?例如,我的表格中有标题和内容,我想先从标题中排序相关性,然后再从内容中排序。
sql_query = SELECT id, content, title, alt_name FROM posts WHERE approve='1' AND id <=( SELECT max_doc_id FROM sph_counter WHERE counter_id=1 )
<?php $cl->setFieldWeights(array('title'=>10,'content'=>5));
根据口味更改确切的重量。