bongobongo wrote:
At default settings it normally raise the error after 1000 docs.
But sometimes it get higher, but not much though.

Regarding my slow insert of 200 000 records:
Do not se why I need an analyzer, the words in the db records are
allready prepared for indexing.

Because you have words in the db records already prepared for indexing :)
Default analyzer walks through the string char by char, checks if it's letter/digit or not and so on. Than it applies lower case filter.

You don't need these. Take a look on Zend_Search_Lucene_Analysis_Analyzer_Common_Text class. You may make it much more effective with explode() function for your case.

They are all lowercase, non digit and space separated....
No record has more than 40 words.... at an average they have approx 20 to 25 words.

If you need any more testing, let me know.

OK!

With best regards,
   Alexander Veremyev.

Reply via email to