Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将新文档添加到现有的 clucene 索引中。我的 IndexWriter 看起来像这样:
index_writer = _CLNEW IndexWriter( path_to_index, &analyzer, false);
第三个参数是'false',因为我不想重新创建索引。不幸的是,没有添加新文档。如果我将其更改为“true”,那么索引自然会被覆盖。
有任何想法吗?提前致谢。
你能告诉我们你的代码的其余部分吗?
最好的猜测是您在写入索引后是否刷新索引?
也许看看演示代码,它向您展示如何索引基本文档。