Skip to content

Commit

Permalink
Implemented #144: Upgrade Solr from 9.4.0 to 9.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-i-l committed Feb 16, 2024
1 parent f838b8f commit 04c3317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/search/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM solr:9.4.0
FROM solr:9.5.0

# Copy the custom config files in. Note that in order to create the collection with this config,
# we need to do a docker run with "solr-precreate content /opt/solr/server/solr/configsets/content"
Expand Down
19 changes: 1 addition & 18 deletions src/search/content/conf/solrconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
that you fully re-index after changing this setting as it can
affect both how text is indexed and queried.
-->
<luceneMatchVersion>9.8</luceneMatchVersion>
<luceneMatchVersion>9.9</luceneMatchVersion>

<!-- <lib/> directives can be used to instruct Solr to load any Jars
identified and use them to resolve any "plugins" specified in
Expand Down Expand Up @@ -494,23 +494,6 @@
-->
<queryResultMaxDocsCached>200</queryResultMaxDocsCached>

<!-- Use Filter For Sorted Query
A possible optimization that attempts to use a filter to
satisfy a search. If the requested sort does not include
score, then the filterCache will be checked for a filter
matching the query. If found, the filter will be used as the
source of document ids, and then the sort will be applied to
that.
For most situations, this will not be useful unless you
frequently get the same search repeatedly with different sort
options, and none of them ever use "score"
-->
<!--
<useFilterForSortedQuery>true</useFilterForSortedQuery>
-->

<!-- Query Related Event Listeners
Various IndexSearcher related events can trigger Listeners to
Expand Down

0 comments on commit 04c3317

Please sign in to comment.