使用 dismax 处理程序进行通配符搜索?
我已成功索引文件,并且希望能够使用通配符进行搜索。我目前正在使用 dismaxRequestHandler (QueryType = dismax) 进行搜索,以便我可以搜索查询的所有字段。
像“computer”这样的常规搜索会返回结果,但“com*er”不会返回任何结果。 类似地,像“co?mput?r”这样的搜索不会返回任何结果。
有人可以告诉我一种继续使用 dismax 并能够在“q”字段中进行通配符搜索的方法吗? edismax处理程序有这个吗?如果是这样,我该如何使用它。我有 Solr 1.4.1。
请帮帮我。
谢谢。
伊姆兰.
I have successfully indexed files, and want to be able to search using wildcards. I am currently using the dismaxRequestHandler (QueryType = dismax) for the searches so that I can search all the fields for the query.
A general search like 'computer' returns results but 'com*er' doesn't return any results.
Similary, a search like 'co?mput?r' returns no results.
Could someone please tell me a way to continue using dismax and be able to do wildcard searches in the 'q' field?
Does edismax handler have this? If so, How do I use it. I have Solr 1.4.1.
Please help me out.
Thanks.
Imran.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Hudson 获取最新(主干)版本。在 RequestHandler 中使用
edismax
来激活 edismax。Grab latest (trunk) build from Hudson. Use
<str name="defType">edismax</str>
in the RequestHandler to activate edismax.