Hi,
Tokenization is usually performed by a query parser before searching
and the result documents may include all terms or some of the terms or
only one term in the query string (it depends on your query
configuration).
> I'm trying to make sample search application with Lucene.
Have you checked
Hello.
I'm trying to make sample search application with Lucene.
search() method of IndexSearcher class searches documents with given query,
and returns TopDocs instance. TopDocs instance has array of ScoreDoc
instances.
My question is:
1. Will query be tokenized during search?
2. If so, does Sco