-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fielded search #152
Merged
Merged
Fielded search #152
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…o unexisting fields in the Catalog controller.
@@ -191,10 +185,10 @@ class CatalogController < ApplicationController | |||
# whether the sort is ascending or descending (it must be asc or desc | |||
# except in the relevancy case). Add the sort: option to configure a | |||
# custom Blacklight url parameter value separate from the Solr sort fields. | |||
config.add_sort_field 'relevance', sort: 'score desc, pub_date_si desc, title_si asc', label: 'relevance' | |||
config.add_sort_field 'year-desc', sort: 'pub_date_si desc, title_si asc', label: 'year' | |||
config.add_sort_field 'relevance', sort: 'score desc, year_available_itsi desc, title_si asc', label: 'relevance' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -194,7 +194,7 @@ | |||
<dynamicField name="*suggest" type="textSuggest" indexed="true" stored="false" multiValued="true" /> | |||
|
|||
<!-- We populate this field manually via Traject (rather than via copyFields) --> | |||
<field name="all_text_timv" type="text" stored="false" indexed="true" multiValued="true" termVectors="true" termPositions="true" termOffsets="true"/> | |||
<field name="all_text_teimv" type="text_en" stored="false" indexed="true" multiValued="true" termVectors="true" termPositions="true" termOffsets="true"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
…he error in CircleCI
…ends on the data in Solr recently indexed
…ing/configuration is causing the zero results
bess
approved these changes
Feb 11, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated Catalog controller,
solrconfig.xml
, and our Traject configuration to use the proper fields and field types to support fielded search.Notice that I changed several field from
text
totext_en
so that small variations in terms (e.g. "rains" vs "rain") result in successful searches.Updated fields used in the
sort
configuration in the Catalog controller to reference the correct fields. I also removed several non-existing fields from being referenced in the Catalog controller.Closes #70