Hi everyone, I will be faceting on data of type integers and I'm wonder if there is any difference on how I design my schema. I have no need to sort or use range facet, given this, in terms of Lucene performance and index size, does it make any difference if I use:
#1: <field name="FACET_ID" type="string" multiValued="true" indexed="true" required="true" stored="false"/> Or #2: <field name="FACET_ID" type="int" multiValued="true" indexed="true" required="true" stored="false"/> (notice how I changed the "type" from "string" to "int" in #2) Thanks in advanced. Steve