Lucene.NET 中前导通配符引发错误

发布于 2024-07-12 10:31:00 字数 300 浏览 7 评论 0原文

如果搜索查询包含前导通配符(*?),则 QueryParserParse 函数会抛出异常一个错误。

Dim q As String = "*abc"
Dim qp As New QueryParser("text", New StandardAnalyzer())
Dim query As Query = qp.Parse(q)

Lucene.NET v2.0.0.4 有什么办法解决这个问题吗?

If the search query contains a leading wildcard character (* or ?), the QueryParser's Parse function throws an error.

Dim q As String = "*abc"
Dim qp As New QueryParser("text", New StandardAnalyzer())
Dim query As Query = qp.Parse(q)

Is there any way to solve this problem in Lucene.NET v2.0.0.4?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

稀香 2024-07-19 10:31:00

设置 QueryParser.SetAllowLeadingWildcard 方法为真。 API 页面指出“这可能会对大索引产生非常慢的查询”。

Set QueryParser.SetAllowLeadingWildcard Method to true. The API page states that "this can produce very slow queries on big indexes" though.

沧笙踏歌 2024-07-19 10:31:00

也许您必须使用 WildcardQuery,但是

...为了防止速度极慢
WildcardQueries,通配符术语
不应以其中之一开头
通配符...

Maybe you have to use a WildcardQuery, but

...In order to prevent extremely slow
WildcardQueries, a Wildcard term
should not start with one of the
wildcards...

故事↓在人 2024-07-19 10:31:00

您可以通过使用 NGramFilter 作为索引分析器来避免通配符查询。 您必须使用 search_analyzer 而不使用 NGramFilter。 这样您就可以搜索类似于 like "%text%" 的内容,甚至不需要通配符。 您只需输入“abc”,您的索引就会很快搜索到包含“abc”的所有条目。

You can avoid wildcard queries by utilizing NGramFilter for your index analyzer. Than you have to use search_analyzer without NGramFilter. This way you can search similar to like "%text%" without even needing wildcards. You just enter 'abc' and your index would be searched for all entries containing 'abc' very quickly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文