SOLR-12374: Added SolrCore.withSearcher(lambda) convenience.

* and fixed SnapShooter.getIndexCommit bug forgetting to decref (rare?)
This commit is contained in:
David Smiley 2018-05-29 17:11:04 -04:00
parent 107fd24ec7
commit 9aa16b64c7
1 changed files with 7 additions and 1 deletions

View File

@ -143,7 +143,7 @@ New Features
* SOLR-11453: Configuring slowQueryThresholdMillis logs slow requests to a separate file - solr_slow_requests.log .
(Shawn Heisey, Remko Popma, Varun Thacker)
* SOLR-12401: Add getValue() and setValue() Stream Evaluators (Joel Bernstein, janhoy)
* SOLR-12401: Add getValue() and setValue() Stream Evaluators (Joel Bernstein, janhoy)
* SOLR-11779: Basic long-term collection of aggregated metrics. Historical data is
maintained as multi-resolution time series using round-robin databases in the '.system'
@ -276,6 +276,9 @@ Bug Fixes
* SOLR-12314: Use http timeout's defined in solr.xml for creating ConcurrentUpdateSolrClient during
indexing requests between leader and replica ( Mark Miller, Varun Thacker)
* SOLR-12374: SnapShooter.getIndexCommit can forget to decref the searcher; though it's not clear in practice when.
(David Smiley)
* SOLR-12417: velocity response writer should enforce valid function name for v.json parameter (yonik)
Optimizations
@ -365,6 +368,9 @@ Other Changes
* SOLR-12265: Upgrade Jetty to 9.4.10.v20180503 (Varun Thacker, Steve Rowe)
* SOLR-12374: Added SolrCore.withSearcher(lambda) to make grabbing the searcher easier than the more awkward
RefCounted API. (David Smiley)
================== 7.3.1 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.