curl "http://localhost:8080/solr/update/csv?stream.file=books.csv&stream.contentType=text/plain;charset=u
tf-8&commit=true&fieldnames=,,cat&f.cat.map=AAA:BBB&keepEmpty=true&f.cat.split=true&f.cat.separator=%20"
请求顺序如下:
- keepEmpty=true
- f.cat.split=true&f.cat.separator=%20
- f.cat.map=AAA:BBB
e.g.
CVS:
| cat |
| ___AAA___ |
_ 代表空格 AAA前后都有三个空格
XML Result:
<arr name="cat">
<str/>
<str/>
<str/>
<str>BBB</str>
<str/>
<str/>
<str/>
</arr>
本文详细阐述了如何使用curl命令将CSV文件批量导入Solr搜索引擎,并解析XML结果,包括参数设置、导入流程及示例代码。
482

被折叠的 条评论
为什么被折叠?



