您好,我正在尝试 xapian c++ 库,我基本上来自 java,我使用了 lucene,现在我需要 xapian,我别无选择。所以我正在使用它。在 lucene 中我们可以这样使用
Document doc = new Document();
doc.add(new Field("title", "stackoverflow", Field.Store.YES, Field.Index.ANALYZED));
w.addDocument(doc);
所以标题包含值。但是从这个例子
Xapian::Document newdocument;
newdocument.set_data(string("stackoverflow");
如何在 xapian 中制作同样的东西。