Closed heyvishy closed 13 years ago
Hi, What branch is this happening on?
this is happening in 0.7 branch.
What flags are you storing the field with?
I have a testExactQuery() case in LucandraTests does this fail for you?
I am using Store.YES and Index.ANALYZED flags. So for e.g. any entry added into document is like, doc.add(new Field(rule, value, Store.YES, Index.ANALYZED)); where rule , value are variables.
i tested testExactQuery() , and it failed. However, the testCase testWriter() passed.
I seem to be running into this issue, too.
Here's a way to reproduce the issue:
Tested on a build of commit 9078ad30e54087731dc4, which is the current HEAD.
@davidstrauss if you change your schema.xml L225 to ,
https://gist.github.com/967633
http://localhost:8983/solandra/reuters/select?q=text:"difficult times"
phrase search should work, solandra needs termPositions="true" in order to perform phrase search
@ceocoder Awesome. That seems to do the trick!
Hi Jake, The phrase query does not work in Lucandra. So, For e.g if indexed data is CITY_EQUAL:new haven and i query with below query CITY_EQUAL:"new haven", i do not get any results.
The same query works if the data is indexed into file segments,using Apache Lucene,
So i am suspecting it's a bug in Lucandra search API.
please take a look.