Lucene.NET 中的 SpanMultiTermQueryWrapper?
有谁知道 Lucene.NET 端口中是否提供 SpanMultiTermQueryWrapper 类?我在任何地方都找不到它,但它肯定会很方便。我仍在使用版本 2.9...也许它可以在更高版本中使用?谢谢!
Does anyone know if the SpanMultiTermQueryWrapper class is available in the Lucene.NET port? I can't find it anywhere, and it sure would be handy. I'm still using version 2.9...maybe it's available in a later version? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在当前的代码库中没有看到它:
https://svn.apache.org/repos/asf/incubator/lucene.net/trunk/src/core/Search/Spans/
不过,您可能可以轻松移植它。
I do not see it in the current codebase:
https://svn.apache.org/repos/asf/incubator/lucene.net/trunk/src/core/Search/Spans/
You could probably port it easily enough though.
SpanMultiTermQueryWrapper 可在Lucene.Net 4.8.0-beta00004。
如果您需要 Lucene.Net 早期版本的支持,您可能只需从上面的链接获取源代码和任何依赖项,并将它们放入您的应用程序的库中。
SpanMultiTermQueryWrapper is available on Lucene.Net 4.8.0-beta00004.
If you need support in earlier versions of Lucene.Net, you can probably just grab the source code from the above link and any dependencies and drop them into a library for your applications.