I'm working with Solr 1.4, and I want to test mergeindexes.
Imagine these following Cores (A and B) :
http://img59.imageshack.us/img59/5804/coreaandb.png
In the core "A", there are document that have the same id than in core B.
I want to merge these two core into a core C. The goal is to get a core C which contains merged documents (based on id).
For example, I want to get the following document into the core C :
- id : 1
- title : rambo
- tag : super
If I call the mergeindexes method, I get the following core C :
http://localhost:8080/solr/admin/multicore?action=mergeindexes&core=coreC&indexDir=../../coreA/data/index&indexDir=../../coreB/data/index
http://img440.imageshack.us/img440/6818/coremerged.png
Do you know if it's possible to get merged documents ?
Thanks for your help,
Antoine