使用 solr 从段落中搜索单词
我将描述设置为 solr 中的字段..现在我想通过搜索其中的单个单词来获取描述
..如何使用 php solr?
请指定 solr 查询进行搜索..
有人可以帮助我吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我将描述设置为 solr 中的字段..现在我想通过搜索其中的单个单词来获取描述
..如何使用 php solr?
请指定 solr 查询进行搜索..
有人可以帮助我吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您尝试在段落中使用单词,您可以这样做:-
如果您可以使用 NGramTokenizerFactory 进行完整的前后通配符搜索。如果您只想搜索字符串开头或结尾的子字符串,请考虑使用 EdgeNGramTokenizerFactory。
If you are trying to use a word in paragraph you could do this:-
It will be more flexible if you can index your data with the NGramTokenizerFactory to do complete front and back wildcard searches. If you just want to search for substrings at the beginning or end of the string, consider using the EdgeNGramTokenizerFactory.