diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 0e1673ed503..edcf8cd1bb1 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -148,7 +148,11 @@ New Features * SOLR-2533: Converted ValueSource.ValueSourceSortField over to new rewriteable Lucene SortFields. ValueSourceSortField instances must be rewritten before they can be used. This is done by SolrIndexSearcher when necessary. (Chris Male). - + +* SOLR-2193, SOLR-2565: You may now specify a 'soft' commit when committing. This will + use Lucene's NRT feature to avoid guaranteeing documents are on stable storage in exchange + for faster reopen times. There is also a new 'soft' autocommit tracker that can be + configured. (Mark Miller, Robert Muir) Optimizations ---------------------- @@ -170,6 +174,12 @@ Optimizations * SOLR-2092: Speed up single-valued and multi-valued "fc" faceting. Typical improvement is 5%, but can be much greater (up to 10x faster) when facet.offset is very large (deep paging). (yonik) + +* SOLR-2193, SOLR-2565: The default Solr update handler has been improved so + that it uses fewer locks, keeps the IndexWriter open rather than closing it + on each commit (ie commits no longer wait for background merges to complete), + works with SolrCore to provide faster 'soft' commits, and has an improved API + that requires less instanceof special casing. (Mark Miller, Robert Muir) Bug Fixes ---------------------- @@ -195,7 +205,10 @@ Bug Fixes * SOLR-2275: fix DisMax 'mm' parsing to be tolerant of whitespace (Erick Erickson via hossman) - + +* SOLR-2193, SOLR-2565: SolrCores now properly share IndexWriters across SolrCore reloads. + (Mark Miller, Robert Muir) + Other Changes ---------------------- diff --git a/solr/example/solr/conf/solrconfig.xml b/solr/example/solr/conf/solrconfig.xml index 4bdc8fde524..30975ad829b 100755 --- a/solr/example/solr/conf/solrconfig.xml +++ b/solr/example/solr/conf/solrconfig.xml @@ -288,6 +288,25 @@ --> + + +