Zend_Search_Lucene “第 0 行未知中没有堆栈帧抛出异常”
使用 Zend_Search_Lucene 时随机出现此错误。
Exception thrown without a stack frame in Unknown on line 0
有没有人遇到过这个可以提供帮助?
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend_Search_Lucene 在析构函数中提交数据。
静态变量稍后被破坏,并且异常处理引擎可能已经被卸载。
使用 $index->commit();在脚本结束之前。
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.