Skip to content
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 11 commits into from
Feb 11, 2022
Merged

Fielded search #152

merged 11 commits into from
Feb 11, 2022

Conversation

hectorcorrea
Copy link
Member

@hectorcorrea hectorcorrea commented Feb 10, 2022

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 to text_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

@@ -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'
Copy link
Contributor

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"/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@hectorcorrea hectorcorrea changed the title Issue 70 fielded search Fielded search Feb 10, 2022
@bess bess merged commit 9cdd896 into main Feb 11, 2022
@bess bess deleted the issue-70-fielded-search branch February 11, 2022 15:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fielded search
3 participants