Hi everyone, I am not sure the best way to title this question, but hopefully the description of my issue will yield some answers.
Basically lets say that I have some XML documents that I want to index(below). Some of the fields will be the same like name, but others like price and dealer will be different. What are the options for indexing this data given that I want to return the search results for a specific dealerId and query? <document> <name>Nissan Pathfinder</name> <price>36,000</price> <year>2012</year> <dealer>foo bar</dealer> <dealerId>1</dealerId> </document> <document> <name>Nissan Pathfinder</name> <price>33,500</price> <year>2012</year> <dealer>local Nissan Dealer</dealer> <dealerId>1</dealerId> </document> -- View this message in context: http://lucene.472066.n3.nabble.com/Lucene-Document-Uniqueness-question-tp3986743.html Sent from the Lucene - General mailing list archive at Nabble.com.
