Update specific field on SOLR index

后端 未结 6 1450
-上瘾入骨i
-上瘾入骨i 2020-12-03 05:40

I want to using solr for search on articles

I have 3 table:

  1. Group (id , group name)
  2. ArticleBase (id, groupId, some other field)
  3. Arti
6条回答
  •  有刺的猬
    2020-12-03 06:02

    Solr does not support updating individual fields yet, but there is a JIRA issue about this (almost 3 years old as of this writing).

    Until this is implemented, you have to update the whole document.

    UPDATE: as of Solr 4+ this is implemented, here's the documentation.

提交回复
热议问题