Hello, I have a SOLR implementation with 1m products. Every products has some information, lets say a television has some information about pixels and inches, a computer has information about harddisk, cpu, gpu. When a user search for computer i want to show the correct facets. An example:
User search for Computer Facets: CPU AMD(10) Intel(300) GPU Nvidia(20) Ati(290) Every product has different facets. I have something like this in my schema: <dynamicField name="*_FACET" type="facetType" indexed="true" stored="true" multiValued="true"/> In SOLR i have now a lot of fields: CPU_FACET, GPU_FACET etc. How many fields can SOLR handle? Another question: Is it possible to add the FACET fields automatically to my query? facet.field=*_FACET? Now i do first a request to a DB to get the FACET titles and add this to the request: facet.field=cpu_FACET,gpu_FACET. I'm affraid that *_FACET is a overkill solution. -- View this message in context: http://lucene.472066.n3.nabble.com/How-many-fields-can-SOLR-handle-tp3033910p3033910.html Sent from the Solr - User mailing list archive at Nabble.com.