I am using Zend Lucene (along with symfony 1.4.8) to index my application for search purposes. The thing is that when it comes to add to the index a field i.e name_el as Zend_Search_Lucene_Field::Text and the value of it is i.e "Καλή σας νύχτα" nothing gets to the index (luke is used for examining the index). The expected result is to tokenize the string and put the tokens in the index ('Καλή', 'σας', 'νύχτα').

I'm building the index like this:

$doc = new Zend_Search_Lucene_Document();
$doc->addField(Zend_Search_Lucene_Field::Text('name_el', 'Καλή σας νύχτα', 'utf-8'));

If I use the Zend_Search_Lucene_Field::Keyword type for the name_el field then the string is correctly inserted into the index but I need it tokenized so this type doesn't suite my needs.

According to Zend Lucene documentation:

"Text fields are stored, indexed, and tokenized. Text fields are appropriate for storing information like subjects and titles that need to be searchable as well as returned with search results"

So I am doing something completely wrong...

link|improve this question

50% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.