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.
我正在尝试索引文本文件并使用 RAMDirectory 进行快速索引,并且想知道是否有办法清除以前的 RAMDirectory 以防止重复?
不确定“清除以前的 RAMDirectory”是什么意思,但是您可以通过将创建标志字符串设置为 true 来覆盖 RAMDir 处的先前索引。这将在构造函数调用的位置创建一个新索引。
IndexWriter(Directory d, Analyzer a, boolean create, IndexWriter.MaxFieldLength mfl)
为 d 中的索引构造一个 IndexWriter。