Skip to content

Instantly share code, notes, and snippets.

@kevindoran
Created February 5, 2013 03:43
Show Gist options
  • Select an option

  • Save kevindoran/4711989 to your computer and use it in GitHub Desktop.

Select an option

Save kevindoran/4711989 to your computer and use it in GitHub Desktop.
Comparison between original and solr format
<!-- original XML format: -->
<auction>
<auction_id>54432834</auction_id>
<title>Dell M2012 24" IPS Monitor</title>
<category>monitors</category>
<current_bid>279.95</current_bid>
</auction>
<!-- The format Solr requires: -->
<doc>
<field name="auction_id">54432834</field>
<field name="title">Dell M2012 24" IPS Monitor</field>
<field name="category">monitors</field>
<field name="current_bid">279.95</field>
</doc>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment