is standard Analyzer in lucene is equall to
Select * from table where name Like raaga
will it searches only the exact match alone
|
is standard Analyzer in lucene is equall to
will it searches only the exact match alone |
|||
|
|
|
The short answer is: No. You are comparing apples and oranges. Here is the StandardAnalyzer API. Here is a Lucene tutorial to give some context to the analyzer/query parser/search. |
|||
|
|
|
Analyzers are used for the tokenization of the Query for the QuerySearch phase. It is also used for the tokenization phase for the analyzed fields. Your searches would depend on the type of Query you are running. |
|||
|
|