如何启用“自行车和男孩”功能在 Solr 中搜索?
我已经启动并运行了 solr,但是当我搜索“Bicycle AND Boy”时,我无法得到结果,对于“Bicycle Boy”效果很好。启用此类搜索的步骤是什么?
I have solr up and running but I cannot get the results when I search "Bicycle AND Boy", works fine for "Bicycle Boy". What are the steps to enable such searches?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,Solr 的配置设置为使用 OR 作为默认查询运算符。在 schema.xml 文件中查找此行:
您还可以参考 Solr 教程以获取有关查询的更多详细信息... http://lucene.apache.org/solr/tutorial.html#Querying+Data
By default the configuration for Solr is set to use OR as the default query operator. Look for this line in the schema.xml file:
<solrQueryParser defaultOperator="OR"/>
You can also reference the Solr Tutorial for more details on querying... http://lucene.apache.org/solr/tutorial.html#Querying+Data
您可以尝试搜索不带引号的 Bicycle AND Boy 吗?
Can you try searching Bicycle AND Boy without quotations?