You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Currently, in api_controller.rb, we're not automatically sending all controller configured facets to Solr. Instead, we're using Solr's solrconfig.xml file to define the list of facets for basic search, and we're using the controller file to define the list of facets for advanced search, many of which have extremely large limit options set.
We should split this one overworked controller into two separate controllers:
This would allow us to NOT need Solr config changes to update the list of facets for basic search. It would also greatly simplify the configuration of these two files, making "how this works" much easier to understand for other developers.
The text was updated successfully, but these errors were encountered:
Currently, in
api_controller.rb
, we're not automatically sending all controller configured facets to Solr. Instead, we're using Solr'ssolrconfig.xml
file to define the list of facets for basic search, and we're using the controller file to define the list of facets for advanced search, many of which have extremely large limit options set.We should split this one overworked controller into two separate controllers:
api_basic_search_controller.rb
api_advanced_search_controller.rb
This would allow us to NOT need Solr config changes to update the list of facets for basic search. It would also greatly simplify the configuration of these two files, making "how this works" much easier to understand for other developers.
The text was updated successfully, but these errors were encountered: