在Windows中发布.pdf文档时更新Solr字段

时间:2016-06-22 17:44:58

标签: windows curl solr

我想发布PDF文档并将其编入索引,同时还要更新我创建的自定义字段。基本上,我希望用户能够在上传文档之前输入标签。

我在我的托管模式文件中添加了一个multiValued“tags”字段:

<field name="tags" type="string" multiValued="true" indexed="true" required="true" stored="true"/>

我尝试过发布数据的curl命令,但它们对我不起作用。到目前为止,这是我可以发布的唯一命令:

java -Dauto -Dc=NameOfCore -Drecursive -jar example/exampledocs/post.jar  C:/Path/To/My/File.pdf

我尝试了这种变化:

java -Dauto -Dc=NameOfCore -Drecursive -jar example/exampledocs/post.jar  C:/Path/To/My/File.pdf -params "literal.tags=test tag"

但这会返回错误:

SimplePostTool: WARNING: No files or directories matching literal.tags=test tag

有没有办法发布和索引文档,同时在不使用curl的情况下更新Windows上的字段?

0 个答案:

没有答案