Created
February 5, 2013 03:43
-
-
Save kevindoran/4711989 to your computer and use it in GitHub Desktop.
Comparison between original and solr format
This file contains hidden or 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
| <!-- 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