fjptec-xm 发表于 2015-7-17 11:15:50

howto:solr post.jar使用

  java -jar post.jar *.xml
java -Ddata=args -jar post.jar '42'
java -Ddata=stdin -jar post.jar < hd.xml
java -Durl=http://localhost:8983/solr/update/csv -Dtype=text/csv -jar post.jar
  
*.csv
java -Durl=http://localhost:8983/solr/update/json -Dtype=application/json -jar
post.jar *.json
java -Durl=http://localhost:8983/solr/update/extract?literal.id=a -Dtype=appli
cation/pdf -jar post.jar a.pdf
Other options controlled by System Properties include the Solr
URL to POST to, the Content-Type of the data, whether a commit
or optimize should be executed, and whether the response should
be written to STDOUT. These are the defaults for all System Properties:
-Ddata=files
-Dtype=application/xml
-Durl=http://localhost:8983/solr/update
-Dcommit=yes
-Doptimize=no
-Dout=no


  
页: [1]
查看完整版本: howto:solr post.jar使用