You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by so...@apache.org on 2022/09/30 21:08:41 UTC

[lucene-site] branch main updated: remove extra spaces that may be preventing markdown rendering

This is an automated email from the ASF dual-hosted git repository.

sokolov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 393e97154 remove extra spaces that may be preventing markdown rendering
393e97154 is described below

commit 393e9715480e20577a8aa6abf86abe4a3b90223e
Author: Michael Sokolov <so...@amazon.com>
AuthorDate: Fri Sep 30 17:08:27 2022 -0400

    remove extra spaces that may be preventing markdown rendering
---
 content/core/core_news/2022-09-30-9-4-0-available.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/content/core/core_news/2022-09-30-9-4-0-available.md b/content/core/core_news/2022-09-30-9-4-0-available.md
index 4901608b4..df2009de4 100644
--- a/content/core/core_news/2022-09-30-9-4-0-available.md
+++ b/content/core/core_news/2022-09-30-9-4-0-available.md
@@ -15,22 +15,22 @@ This release contains numerous bug fixes, optimizations, and improvements, some
 
 #### New features
 
-  * Added ShapeDocValues/Field, a unified abstraction to represent existing types: XY and lat/long.
-  * FacetSets can now be filtered using a Query via MatchingFacetSetCounts.
-  * SortField now allows control over whether to apply index-sort optimizations.
-  * Support for Java 19 foreign memory access ("project Panama") was added. Applications started with command line parameter "java --enable-preview" will automatically use the new foreign memory API of Java 19 to access indexes on disk with MMapDirectory. This is an opt-in feature and requires explicit Java command line flag passed to your application's Java process (e.g., modify startup parameters of Solr or Elasticsearch/Opensearch)! When enabled, Lucene logs a notice using java.util.l [...]
+ * Added ShapeDocValues/Field, a unified abstraction to represent existing types: XY and lat/long.
+ * FacetSets can now be filtered using a Query via MatchingFacetSetCounts.
+ * SortField now allows control over whether to apply index-sort optimizations.
+ * Support for Java 19 foreign memory access ("project Panama") was added. Applications started with command line parameter "java --enable-preview" will automatically use the new foreign memory API of Java 19 to access indexes on disk with MMapDirectory. This is an opt-in feature and requires explicit Java command line flag passed to your application's Java process (e.g., modify startup parameters of Solr or Elasticsearch/Opensearch)! When enabled, Lucene logs a notice using java.util.lo [...]
 
 #### Optimizations
 
-  * Added support for dynamic pruning to queries sorted by a string field that is indexed with both terms and SORTED or SORTED_SET doc values. This can lead to dramatic speedups when applicable.
-  * TermInSetQuery is optimized for the case when one of its terms matches all docs in a segment, and it now provides cost estimation, making it usable with IndexOrDocValuesQuery for better query planning.
-  * KnnVector fields can now be stored with reduced (8-bit) precision, saving storage and yielding a small query latency improvement.
+ * Added support for dynamic pruning to queries sorted by a string field that is indexed with both terms and SORTED or SORTED_SET doc values. This can lead to dramatic speedups when applicable.
+ * TermInSetQuery is optimized for the case when one of its terms matches all docs in a segment, and it now provides cost estimation, making it usable with IndexOrDocValuesQuery for better query planning.
+ * KnnVector fields can now be stored with reduced (8-bit) precision, saving storage and yielding a small query latency improvement.
 
 #### Other
 
-  * KnnVector fields' HNSW graphs are now created incrementally when new documents are added, rather than all-at-once when flushing. This yields more consistent predictable behavior at the cost of an overall increase in indexing time.
-  * randomizedtesting dependency upgraded to 2.8.1
-  * addIndexes(CodecReader) now respects MergePolicy and MergeScheduler, enabling it to do its work concurrently.
+ * KnnVector fields' HNSW graphs are now created incrementally when new documents are added, rather than all-at-once when flushing. This yields more consistent predictable behavior at the cost of an overall increase in indexing time.
+ * randomizedtesting dependency upgraded to 2.8.1
+ * addIndexes(CodecReader) now respects MergePolicy and MergeScheduler, enabling it to do its work concurrently.
 
 ... plus a number of helpful bug fixes!