phplucenezend-search-lucene

Zend Search Lucene case insensitive search doesn't work


I've got a Search class, which has

public function __construct($isNewIndex = false) {
    setlocale(LC_CTYPE, 'ru_RU.UTF-8');
    
    $analyzer = new Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8_CaseInsensitive();
    $morphy = new Isi_Search_Lucene_Analysis_TokenFilter_Morphy('ru_RU');
    $analyzer->addFilter($morphy);

    Zend_Search_Lucene_Analysis_Analyzer::setDefault($analyzer);
    Zend_Search_Lucene_Search_QueryParser::setDefaultEncoding('utf-8');

    //if it's true, then it creates new folder to the path in $_indexFieles;
    if ($isNewIndex) {
        $this->_indexes[$this->_key] = Zend_Search_Lucene::create(Yii::getPathOfAlias('application.' . $this->_indexFiles), true);
    } else {
        $this->_indexes[$this->_key] = Zend_Search_Lucene::open(Yii::getPathOfAlias('application.' . $this->_indexFiles));
    }
}

 public function find($query, $eventId)
{
    try 
    {
        Zend_Search_Lucene_Search_QueryParser::setDefaultOperator(Zend_Search_Lucene_Search_QueryParser::B_AND);
        $query = "($query) AND (event_id:$eventId)";
        Zend_Search_Lucene::setResultSetLimit(self::ACCREDITATION_LIMIT);
        return $this->_indexes[$this->_key]->find("{$query}");
    } 
    catch (Zend_Search_Lucene_Search_QueryParserException $e) 
    {
        echo "Query syntax error: " . $e->getMessage() . "\n";
    }
    catch (Exception $e) 
    {
        echo $e->getMessage(). "\n";
    }
}

I've got a record with name Test, when I'm looking for Test it works, but can't find this record with request test Code example:

$s = new Search();
$s->find('test', 1232);//no results

Solution

  • I found a solution, the problem was that I was saving fields (name, etc.) as keyword, I changed it to text, and now it's working perfectly.