On 12/27/06, Giri <[EMAIL PROTECTED]> wrote:
I am currently exploring the possibility of using faceted browsing using Solr, and got few questions. I am currently indexing some fields that has more than one value per record or e.g., a field name called metaKeyword, and the value for this contains more than one value per record (e.g., java, programming, object oriented), is it possible to include this field on the faceted search? or this metaKeyword needs to have only unique value per record to use a faceted?
Yes, multivalued fields are supported with faceted search, but the speed is currently proportional to the number of unique terms in that field. You also need to increase the size of the filterCache (see solrconfig.xml) to be larger than the number of terms. -Yonik