SOlR 和关键字

发布于 2024-11-10 13:50:26 字数 833 浏览 5 评论 0 原文

我有这个脚本:

$removeList = array('+', '-', '&&', '||', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\');
$keyword = str_replace($removeList, '', mb_strtolower($_GET['query'], 'UTF-8'));
$keyword_str = strlen($keyword);    

if($keyword_str>=3){
    $options = array('hostname' => '**.*.*.*','login' => '', 'password' => '', 'port' => 8080);
    $client = new SolrClient($options);
    $query = new SolrQuery();
    $query->setTerms(true);
    $query->setTermsLimit(10);
    $query->setTermsSort(1);
    $query->setTermsField('keywords')->setTermsPrefix($keyword);
    $updateResponse = $client->query($query);
}

这个脚本运行良好。但怎样才能让它按类别搜索呢?

示例:我的 var 是 $_GET['query'] = 'au' 但我只想在 cat = 2 中搜索。现在它搜索整个数据库。我怎样才能做到这一点?谢谢。

I have this script:

$removeList = array('+', '-', '&&', '||', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\');
$keyword = str_replace($removeList, '', mb_strtolower($_GET['query'], 'UTF-8'));
$keyword_str = strlen($keyword);    

if($keyword_str>=3){
    $options = array('hostname' => '**.*.*.*','login' => '', 'password' => '', 'port' => 8080);
    $client = new SolrClient($options);
    $query = new SolrQuery();
    $query->setTerms(true);
    $query->setTermsLimit(10);
    $query->setTermsSort(1);
    $query->setTermsField('keywords')->setTermsPrefix($keyword);
    $updateResponse = $client->query($query);
}

This script is working fine. But how can I make it search by category?

Example: my var are $_GET['query'] = 'au' but i want to search only in cat = 2. Now its searching the whole DB. how can I make that? thanks.

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

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

发布评论

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

评论(1

烟雨扶苏 2024-11-17 13:50:26

您需要使用TermsComponent吗?如果没有,我的建议是使用 SolrQuery::setQuery 构建查询,并借助 Solr 的 查询语法

示例:

<?php

    /* ... */

    $query = new SolrQuery();
    $query->setQuery('(cat:2) AND (keywords:' . $keyword . ')');

    /* ... */

?>

...或使用 SolrQuery 构造函数的简短形式:

<?php

    /* ... */

    $query = new SolrQuery('(cat:2) AND (keywords:' . $keyword . ')');

    /* ... */

?>

Do you need to use the TermsComponent? If not, my suggestion would be to build your query by using SolrQuery::setQuery and setting a static filter on the cat field by the help of Solr's Query Syntax.

Example:

<?php

    /* ... */

    $query = new SolrQuery();
    $query->setQuery('(cat:2) AND (keywords:' . $keyword . ')');

    /* ... */

?>

... or in short form using SolrQuery constructor:

<?php

    /* ... */

    $query = new SolrQuery('(cat:2) AND (keywords:' . $keyword . ')');

    /* ... */

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