vote up 0 vote down star

I'm using 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?

flag

59% accept rate

2 Answers

vote up 1 vote down

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...

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.