Zend Lucene的索引文件在哪里?
我第一次以这种方式索引数据时,
$index = new Zend_Search_Lucene('/tmp/search_index', true);
这在我的项目的公共文件夹中创建了一个 tmp/search_index 文件夹。在我注意到索引有问题后,我刚刚删除了 search_index 文件夹中的所有文件。
尝试重新索引数据后,我意识到 search_index 文件夹是空的。然而,搜索仍然给出结果。索引数据现在存储在哪里?它不在公共文件夹中...
the first time I indexed my data this way
$index = new Zend_Search_Lucene('/tmp/search_index', true);
This created a tmp/search_index folder in the public folder of my project. After I noticed there is something wrong with the index I just deleted all file in the search_index folder.
After trying to reindex the data I realized that the search_index folder is empty. However the search gives still results. Where is the index data stored now? It's not in the public folder...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/tmp/search_index
指系统根/tmp
文件夹。使用与您的应用相关的其他路径,例如tmp/search_index
。/tmp/search_index
refers to the system root/tmp
folder. Use some other path relative to your app, liketmp/search_index
.