-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scope down facet queries from web app #298
Comments
It might make it easier to limit the number of requested facet values to the number of values shown in the facet panels (plus one to know if there's more) if we use the |
Just a short remark: from the pure Solr perspective changing |
@teckart I have implemented a dynamic setting of Good suggestion to see if we can reduce the number of facet fields in some cases. Even 15% sounds worth it. |
One of the large bottlenecks in the Web app - Solr request/response cycle is the facet count information provided by Solr (see #287). Currently, in many cases the web app requests too much 'expensive' information from Solr - for instance the
facet.limit
parameter is always set to-1
which forces Solr to return counts for all values. Furthermore, counts are always requested for all facets, including those that have not been expanded in the view. I suspect that 'narrowing down' the Solr facet queries in this respect has the potential to significantly reduce the Solr query response times and as a consequence improve the responsiveness of the VLO web app. It might also positively impact server load and memory usage.The text was updated successfully, but these errors were encountered: