ZF-4653: single character with wildcars search
Description
Hello, i integrate zend lucene in my symfony application and i try to searching word... i have see that if i try to search a single character whith a wilcards (for example: a*) zend search lucene broke... I try to understand if this is only my problem or if is a zend_search_lucene problem, and i've try on your zend framework site: http://framework.zend.com/
if you search "a*" the result is a blank page.... http://framework.zend.com/search/…
in a devzone too: http://devzone.zend.com/search/results?q=a*
Comments
Posted by Shaun Farrell (farrelley) on 2011-08-26T12:09:44.000+0000
This is because default behavior of Zend_Search_Lucene throws an exception if you search with wildcard character not followed by 3 non wild card characters.
You should catch this exception and handle it.
Example:
Posted by Shaun Farrell (farrelley) on 2011-08-26T12:53:18.000+0000
Works as designed. Exception is thrown due to 3 non wildcard characters before wildcard.