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.
我正在使用 curl 中的此命令在 Apache solr 中索引我的数据
curl "http://localhost:8983/solr/update/extract?literal.id=doc1&uprefix=attr_&fmap.content=attr_content&commit=true" -F "myfile=@/home/ww.pdf"
运行此命令后,我可以向 attr_contents 属性添加更多内容吗?
就地更新(仅更改现有记录的一个字段)在当前版本的 Solr 中是不可能的。您将需要重新索引整个文档。
但是,如果要在索引富文档(如 PDF)时设置字段,请使用literal.my_field=some_val. 您正在id包含的命令中设置这种方式。
literal.my_field=some_val
id