Manohar Sripada [manohar...@gmail.com] wrote: > From the wiki, it states that > http://wiki.apache.org/solr/SolrCaching#fieldValueCache is mostly used for > faceting.
> Can someone please throw some light on how to load data to this cache. Like > on what solrquery option does this consider the data to be loaded to this > cache. The values are loaded on first facet call with facet.method=fc. http://wiki.apache.org/solr/SimpleFacetParameters#facet.method > My requirement is I have 10 facet fields (with facetlimit - 5) to be shown > in my UI. I want to speed up this by using this cache. Is there a way where > I can specify only the list of fields to be loaded to FieldValue Cache? Add a facet call as explicit warmup in your solrconfig.xml. You might want to consider DocValues for your facet fields. https://cwiki.apache.org/confluence/display/solr/DocValues - Toke Eskildsen