I am using Solr 5.4 and have Solr schema containing 5 fields. Now, I am indexing two types of docs:
Doc1:
field1
field2
field3
Doc2:
field1
field4
field5
Here field1 contains unique ID and it is common to both the docs. There are more docs of type Doc2 than Doc1. Since field2 contains large amount of text, I cannot duplicate field2 for each Doc2. Now I want to retrieve field2 also while querying for doc type Doc2 using field1. Is it possible to do so?