你好我正在尝试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中做同样的事情。
答案 0 :(得分:0)
Omega中的代码使用了一个简单的键值序列化,可能会有所帮助。或者,您可以查看像restpose这样的内容,它提供了一种基于Xapian构建的更高级别的搜索方法,并且与Solr更具可比性。