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

Stop storing all_search fields #229

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions exhibits/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<!-- entire marc bib record -->
<field name="marcxml" type="string" indexed="false" stored="true" />
<!-- all_search: catch-all field for metadata text; stored for hit highlighting -->
<field name="all_search" type="text" indexed="true" stored="true" termVectors="true" termPositions="true" termOffsets="true" multiValued="true" />
<field name="all_unstem_search" type="textNoStem" indexed="true" stored="true" multiValued="true" />
<field name="vern_all_search" type="text" indexed="true" stored="true" multiValued="true" />
<field name="all_search" type="text" indexed="true" stored="false" multiValued="true" />
<field name="all_unstem_search" type="textNoStem" indexed="true" stored="false" multiValued="true" />
<field name="vern_all_search" type="text" indexed="true" stored="false" multiValued="true" />

<!-- Format Field: facet and display -->
<field name="format" type="string" indexed="true" stored="true" multiValued="true" />
Expand Down
2 changes: 1 addition & 1 deletion exhibits/solrconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@
<str name="facet.field">collection_with_title</str>

<!-- Highlighting defaults -->
<str name="hl.fl">all_search full_text_search full_text_search_en full_text_search_pt full_text_search_id</str>
<str name="hl.fl">full_text_search full_text_search_en full_text_search_pt full_text_search_id</str>

<str name="fl">
score,
Expand Down
8 changes: 4 additions & 4 deletions exhibits_stage/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<field name="last_updated" type="date" indexed="true" stored="true" default="NOW/SECOND" />
<!-- entire marc bib record -->
<field name="marcxml" type="string" indexed="false" stored="true" />
<!-- all_search: catch-all field for metadata text; stored for hit highlighting -->
<field name="all_search" type="text" indexed="true" stored="true" termVectors="true" termPositions="true" termOffsets="true" multiValued="true" />
<field name="all_unstem_search" type="textNoStem" indexed="true" stored="true" multiValued="true" />
<field name="vern_all_search" type="text" indexed="true" stored="true" multiValued="true" />
<!-- all_search: catch-all field for metadata text -->
<field name="all_search" type="text" indexed="true" stored="false" multiValued="true" />
<field name="all_unstem_search" type="textNoStem" indexed="true" stored="false" multiValued="true" />
<field name="vern_all_search" type="text" indexed="true" stored="false" multiValued="true" />

<!-- Format Field: facet and display -->
<field name="format" type="string" indexed="true" stored="true" multiValued="true" />
Expand Down
4 changes: 2 additions & 2 deletions exhibits_stage/solrconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</updateLog>
</updateHandler>




<dataDir>${solr.data.dir:}</dataDir>
Expand Down Expand Up @@ -808,7 +808,7 @@
<str name="facet.field">collection_with_title</str>

<!-- Highlighting defaults -->
<str name="hl.fl">all_search full_text_search full_text_search_en full_text_search_pt full_text_search_id</str>
<str name="hl.fl">full_text_search full_text_search_en full_text_search_pt full_text_search_id</str>

<str name="fl">
score,
Expand Down