gpt4 book ai didi

solr - 加号登录 solr 查询未正确处理

转载 作者:行者123 更新时间:2023-12-02 04:24:47 26 4
gpt4 key购买 nike

全部:

我是 Solr 的新手,当我使用导入一些随机文档的 solr 示例时,我在 q 中使用搜索查询,例如:

fund+report

fund和+之间没有空格,我以为它会在文档中搜索一个词“fund+report”,这种情况在文档中很少发生,但是返回的结果很多,查询url是:

http://localhost:8983/solr/collection1/select?q=fund%2Breport&fl=id+filename+%5Bexplain%5D&wt=xml&indent=true

我认为 Solr 对待我的查询就像:

fund report

fund OR report

谁能告诉我为什么 solr 会这样对待我的查询?以及如何让 solr 将 fund+report 视为一个词?

谢谢

最佳答案

HTTP 调用将简单地将 + 转换为空格 。如果您需要一个实际的 + 符号,那么您需要使用 + 的 URL 编码值(我认为是 %2B)。如果您要查找短语 fund report,那么您需要在该短语周围加上双引号,例如,"fund report"。这些也应该是 URL 编码的(我认为它的值是 %22)。

请记住,如果您使用词干提取,那么搜索 "fund report" 将找到 "funds reports""funding reports " 等。但也许这就是您想要的。

总而言之,您的 URL 可能如下所示:

http://localhost:8983/solr/collection1/select?q=%22fund%20report%22&fl=id,filename,%5Bexplain%5D&wt=xml&indent=true

请注意,为 fl 参数列出的字段应该以逗号分隔。我不确定为什么 explain 字段周围有方括号。

关于solr - 加号登录 solr 查询未正确处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27827347/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com