Skip to content

Instantly share code, notes, and snippets.

@michaelklapper
Created July 2, 2013 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelklapper/5909409 to your computer and use it in GitHub Desktop.
Save michaelklapper/5909409 to your computer and use it in GitHub Desktop.
Solr: Create new document with curl
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