短语中术语的通配符 - Lucene
Google 的查询语法允许搜索诸如“as * as a skyscraper”之类的短语,其中星号可以匹配任何术语(或多个术语)。 Lucene 有没有办法达到同样的效果?邻近运算符 ~ 可能有用,但这不是我真正想要的。
Google's query syntax allows to search phrases like "as * as a skyscraper" where the asterisk can match any term (or terms). Is there a way to achieve the same thing in Lucene? The proximity operator ~ could be of use but it is not what I exactly want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 SpanNearQuery。 Mark Miller 的 SpanQuery 博客文章 解释了如何使用它,这些例子与你所描述的类似。
Try a SpanNearQuery. Mark Miller's SpanQuery Blog Post explains how to use it, and the examples are similar to what you describe.