Closed (fixed)
Project:
Apache Solr Search
Version:
7.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
19 Oct 2011 at 07:55 UTC
Updated:
8 Nov 2011 at 14:20 UTC
I'd like to use a Facet block as a menu, that will be displayed on all the pages. By default, the filters are only displayed on the search pages.
I know it's possible to add search pages in the Apache Solr search configuration menu, but is there a simple way (or even a complicated one) to have one of the filter block displayed on every pages ?
Comments
Comment #1
nick_vhYou should be executing a query to solr on every page which becomes very heavy. An easier solution would be to kind of cache the facets that you have and save them somewhere so you can display the latest cache of the facets on every page. Also, this is more something for facetapi.
Comment #2
yraber commentedI just had a look at Facet API and it seems to be the best way to do what I want. Thank you.
Comment #3
nick_vh