This question already has an answer here:
The wildcard * can only be used at the end of a word, like user*.
I want to query with a like %user%, how to do that?
|
This question already has an answer here: The wildcard * can only be used at the end of a word, like I want to query with a like |
|||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Lucene provides the ReverseStringFilter that allows to do leading wildcard search like *user. It works by indexing all terms in reverse order. But I think there is no way to do something similar to 'LIKE %user%'. |
|||||||
|
|
The trouble with LIKE queries is that they are expensive in terms of time taken to execute. You can set up QueryParser to allow leading wildcards with the following:
And this will allow you to do searches like:
But this will take a long time to execute. Sometimes when people say they want a LIKE query, what they actually want is a fuzzy query. This would allow you to do the following search:
Which would match the terms I suggest you also take a look at regex query, which supports regular expression syntax for Lucene searches. It may be closer to what you really need. Perhaps something like:
|
||||
|
|
|
Since Lucene 2.1 you can use
but this can kill performance. The LuceneFAQ has some more info for this. |
|||
|
|
|
When you think about it, it is not entirely unsurprising that lucene's support for wildcarding is (normally) restricted to a wildcard at the end of a word pattern. Keyword search engines works by creating a reverse index of all words in the corpus, which is sorted in word order. When you do a normal non-wildcard search, the engine makes use of the fact that index entries are sorted to locate the entry or entries for your word in However, for a word pattern with a wildcard prefix and a wildcard suffix, the engine would have to look at all entries in the index. This would be |
|||
|
|