Not able to use lucene's keyword analyzer properly,
String term = "new york";
// id and location are the fields in which i want to search the "term"
MultiFieldQueryParser queryParser = new MultiFieldQueryParser(
Version.LUCENE_30,
{"id", "location"},
new KeywordAnalyzer());
Query query = queryParser.parse(term);
System.out.println(query.toString());
OUTCOME: (id:new location:new) (id:york location:york)
EXPECTED OUTCOME: (id:new york location:new york) (id:new york location:new york)
Please help me identify what i am doing wrong here??
Thanks - El
{"id", "location"}withnew String[]{"id", "location"}(otherwise it is treated as two strings instead of an array). You compiled exactly this code, or replaced the parameter? – jakub.g Sep 20 '11 at 17:23