sphinx完美匹配问题?

发布于 2024-11-03 07:45:26 字数 671 浏览 1 评论 0原文

我是狮身人面像新手。

<?php
    include('sphinxapi.php');
    $cl = new SphinxClient();
    $cl->SetServer('localhost',9312);
    //$cl->SetMatchMode(SPH_MATCH_ANY);
    //$cl->SetMatchMode(SPH_MATCH_EXTENDED2);
    //$cl->SetMatchMode(SPH_MATCH_ALL);
    $cl->SetMatchMode(SPH_MATCH_PHRASE);
    $cl->SetArrayResult(true);
    $cl->SetLimits(0, 100); 
    $result = $cl->Query("&name one boy","abc_index");

    echo "<pre>";
    print_r($result);
    exit;
?>

我只需要“one boy”单词匹配记录哪种匹配模式是正确的?

我已经在使用 SPH_MATCH_PHRASE 模式。但它不起作用?

i am new to Sphinx .

<?php
    include('sphinxapi.php');
    $cl = new SphinxClient();
    $cl->SetServer('localhost',9312);
    //$cl->SetMatchMode(SPH_MATCH_ANY);
    //$cl->SetMatchMode(SPH_MATCH_EXTENDED2);
    //$cl->SetMatchMode(SPH_MATCH_ALL);
    $cl->SetMatchMode(SPH_MATCH_PHRASE);
    $cl->SetArrayResult(true);
    $cl->SetLimits(0, 100); 
    $result = $cl->Query("&name one boy","abc_index");

    echo "<pre>";
    print_r($result);
    exit;
?>

i need only "one boy" word matching records which match mode is correct for that?

i am already using SPH_MATCH_PHRASE mode. But it is not working?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁许谁一生繁华 2024-11-10 07:45:26
  <?php    
    include('sphinxapi.php'); 
    $cl = new SphinxClient();  
    $cl->SetServer('localhost',9312);
    $cl->SetMatchMode(SPH_MATCH_EXTENDED2);
    $cl->SetArrayResult(true);
    $cl->SetLimits(0, 100);  
    //this is for perfect match mode
    $searchkey='one boy';
    $sphinxQry = '@(name) '. '"'.$searchkey.'"';
    $result = $cl->Query($sphinxQry,"abc_index");

   echo "<pre>";   

   print_r($result);  
   exit; ?> 
  <?php    
    include('sphinxapi.php'); 
    $cl = new SphinxClient();  
    $cl->SetServer('localhost',9312);
    $cl->SetMatchMode(SPH_MATCH_EXTENDED2);
    $cl->SetArrayResult(true);
    $cl->SetLimits(0, 100);  
    //this is for perfect match mode
    $searchkey='one boy';
    $sphinxQry = '@(name) '. '"'.$searchkey.'"';
    $result = $cl->Query($sphinxQry,"abc_index");

   echo "<pre>";   

   print_r($result);  
   exit; ?> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文