代码之家  ›  专栏  ›  技术社区  ›  Mikos

SolrNet/Solr-更新与覆盖文档

  •  2
  • Mikos  · 技术社区  · 14 年前

    在Lucene中,我可以这样做,其中term是文档键的Lucene术语。我在SolrNet怎么做?我知道在一个方法中一个字段一个字段附加的(痛苦的)方法,但肯定有更简单的方法。。。

    //where term is a Lucene term for the document key
    if (objFacetsSearcher.DocFreq(term) > 0)
    {
        objWriter.UpdateDocument(term, doc);
        updated++;
    }
    else
    {
        objWriter.AddDocument(doc);
        added++;
    }
    
    1 回复  |  直到 13 年前
        1
  •  1
  •   Karl Johansson    14 年前

    据我所知,Solr还不支持这个。看到了吗 SOLR-139 .