I have been working on creating an index using Zend Framework latest version. The interface is working fine and everything else.
The problem I have now is the "re-indexation" or creation of the index. I have checked everything else, sanitizing the data and double checking the quality of the data.
The Process always stops at most likely record 15.000 and the limit on the index dir of 2.000.000. That I decided to build an application compiled in java with version lucene3.0.3 to run the indexation.
Fatal error: Uncaught exception 'Zend_Search_Lucene_Exception' with message 'Unsupported segments file format' in
It seems the latest format used by Zend Lucene is 2.3
Any ideas how to solve this problem, I really appreciate your input
I have no experience with this. But on the zend lucene website they state that the currently supported lucene index version is 2.3. It might be the case that version 3.0.3 is not fully supported.
See: http://framework.zend.com/manual/en/zend.search.lucene.java-lucene.html
I customized the example of this site http://www.techcrony.info/?p=33, this example reads text files from a data dir. So, the new customized functions need to read the info from the MySQL database:
As you can see I used the lucene-core-2.3.0.jar
Now the most important question, is anyone aware if PHP lucene is able to manage more than 1.000.000 documents?