如何使用 Sphinx 执行此操作(限制搜索结果数量)

发布于 2024-11-30 16:51:28 字数 359 浏览 0 评论 0原文

我是 Sphinx 的新手,需要一些帮助。我正在使用 PHP 脚本查询 Sphinx 服务器,如下所示:

 $cl = new SphinxClient();
 $cl->SetServer( "host", 9312 );
 $cl->SetMatchMode( SPH_MATCH_ANY  );
 $result = $cl->Query( "some word",  "index1" );  

现在我想知道如何提取相同查询的前 20 个结果,然后是接下来的 20 个结果,等等,就像在 MySQL 中 LIMIT 0,20 一样,然后 <代码>LIMIT 20,20等?

I am new to Sphinx, and need some help. I am querying Sphinx server with PHP script like:

 $cl = new SphinxClient();
 $cl->SetServer( "host", 9312 );
 $cl->SetMatchMode( SPH_MATCH_ANY  );
 $result = $cl->Query( "some word",  "index1" );  

Now I would like to know how to pull for SAME query first 20 results, then next 20 results, etc, like in MySQL LIMIT 0,20, then LIMIT 20,20, etc?

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

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

发布评论

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

评论(4

看海 2024-12-07 16:51:28
$offset = 0;
if (isset($_GET['offset'])) {
    $offset = $_GET['offset'];
}
$limit = 30;
$max_matches = 1000;
$cl = new SphinxClient();

$cl->SetLimits((int)$offset,
    // limit for this "page", starting at $offset
    (int)$limit,
    // absolute limit for number of results
    ((int)$limit > $max_matches)
        ? (int)$limit
        : (int)$max_matches);

其中,$offset 是当前起始记录(默认 0),$limit 是每页显示的记录数,$max_matches 是您希望允许在单次搜索中返回的最大匹配数。

$offset = 0;
if (isset($_GET['offset'])) {
    $offset = $_GET['offset'];
}
$limit = 30;
$max_matches = 1000;
$cl = new SphinxClient();

$cl->SetLimits((int)$offset,
    // limit for this "page", starting at $offset
    (int)$limit,
    // absolute limit for number of results
    ((int)$limit > $max_matches)
        ? (int)$limit
        : (int)$max_matches);

Where $offset is the current start record (default 0), $limit is the number of records to display per page, and $max_matches is the maximum number of matches you want allow returned in a single search.

江湖正好 2024-12-07 16:51:28

第一次

$cl->SetLimits(0,20);

那么

$cl->SetLimits(20,20);

First time

$cl->SetLimits(0,20);

then

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