Created
July 2, 2013 13:45
-
-
Save michaelklapper/5909409 to your computer and use it in GitHub Desktop.
Solr: Create new document with curl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl http://localhost:8095/solr/test/update --data-binary '<add><doc><field name="id">1</field><field name="type">website</field><field name="appKey">indexer</field><field name="title">My product</field><field name="price_mz_f">49.99</field><field name="price_fr_f">43.99</field><field name="price_st_f">23.99</field></doc></add>' -H 'Content-type:text/xml; charset=utf-8' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment