Hi!
I have been trying to make it work but for the moment it doesn't work. If I search
l'auca it works but I would like to search for
auca and get the same results. I have checked my index with luke and the field is indexed with apostrophe (
l'auca).
This is my field definition:
Code:
@Field(name = "title", analyzer=@Analyzer(impl=StandardAnalyzer.class))
private String titulo;
This is my query creation:
Code:
org.apache.lucene.queryParser.QueryParser parser = new QueryParser(Version.LUCENE_31, campos[cont], new StandardAnalyzer(Version.LUCENE_31) );
any help would be very appreciated :)
Thanks in advance,
Hibernator.