I get this error randomly when using Zend_Search_Lucene.
Exception thrown without a stack frame in Unknown on line 0
Has anybody ran into this who can help?
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Zend_Search_Lucene commits data within destructor.
Static variables are destructed later and exception handling engine may be already unloaded.
Use $index->commmit(); before end of script.