I have this 2 core of solr, one called catalogs and the others special_page. It contains data from the same db, the difference is catalogs contain more field than the others (catalogs is in solr 5 and special in solr 4, yes differ solr version).
Problem is, when I have to sort this particular data, eg. special_page which id is 1 then sort by product_scroring desc. This 2 core having different order of results.
catalogs schema for product scoring : <field name="product_scoring" type="text_general" indexed="true" stored="true" multiValued="false" default=""/>
special_page schema for product_scoring : <field name="product_scoring" type="text_general" indexed="true" stored="true"/>
Can anyone suggest me what would make this 2 core produce same order of result? Thanks