Apache solr将数据附加到字段中

时间:2012-07-03 10:29:15

标签: php curl solr

我使用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属性添加更多内容吗?

1 个答案:

答案 0 :(得分:1)

当前版本的Solr中无法进行就地更新(仅更改现有记录的一个字段)。您需要重新索引整个文档。

但是,如果要在索引富文档(如PDF)时设置字段,请使用literal.my_field=some_val。您在所包含的命令中以这种方式设置id