I am programatically creating a query as follows.
BooleanQuery query = new BooleanQuery();
ConstantScoreRangeQuery range = new ConstantScoreRangeQuery
("creationDate", "19500101", "20071029", false, false);
query.add(range, Occur.MUST);
I am then executing the query which unexpecte
Thanks for the replies on my question.
In the end I've taken the StandardAnalyser grammar, modified it and
generated a new analyser with JavaCC. Seems to be working a treat!
Adrian
On 11 Aug 2006, at 14:32, Erik Hatcher wrote:
On Aug 11, 2006, at 1:23 AM, Martin Braun wrote:
Hello Adrian