How to retrieve json in original nested form in apache solr?
问题 I am using apache solr for text search . I have nested document structure . This is one.json file : { "id": "1", "info": { "first_name": "John", "last_name": "Doe", "gender": "male" } } I created a solr core and posted one.json in it.Solr indexed and flattened the above document's nested structure , I guess for better indexing in following form: { "id":["1"], "info.first_name":["John"], "info.last_name":["Doe"], "info.gender":["male"] } Now, when I make the search query,the result is in