Guest User

Untitled

a guest
Oct 23rd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $sphinx = new SphinxClient();
  2. $sphinx->SetServer('localhost', 9313);
  3. $sphinx->SetLimits(0, 200, 200);
  4. $sphinx->SetMatchMode(SPH_MATCH_EXTENDED2);
  5. $sphinx->SetSortMode ( SPH_SORT_RELEVANCE );
  6. $sphinx->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
  7. $sphinx->SetFieldWeights(array(
  8. 'brand_name' => 10,
  9. 'header' => 9,
  10. 'code' => 7
  11. ));
  12. $sphinxResult = $sphinx->Query(implode(' ', $query_arr));
Add Comment
Please, Sign In to add comment