Hi ,
is there any way to Query the Index of Zend_Search_Lucene
for an exact match ?
$keyword = 'Summer 2009';
when i use :
$myIndex->find($keyword)
i am also receiving "Summer , 2009, Summer 2009" ?
Hi ,
is there any way to Query the Index of Zend_Search_Lucene
for an exact match ?
$keyword = 'Summer 2009';
when i use :
$myIndex->find($keyword)
i am also receiving "Summer , 2009, Summer 2009" ?
Querying for a double-quoted string ought to do it:
$keyword = '"Summer 2009"';