You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2022/07/29 07:26:34 UTC

[lucene-site] branch main updated (b1ccc8fcd -> acdcce255)

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

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


    from b1ccc8fcd Fix obsolete link to contributing guide
     new f34b29f33 Update version variables for release 9.3.0
     new acdcce255 Adding Lucene news for release 9.3.0

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../core/core_news/yyyy-mm-dd-9-3-0-available.md   | 25 ++++++++++++++++++++++
 pelicanconf.py                                     |  4 ++--
 2 files changed, 27 insertions(+), 2 deletions(-)
 create mode 100644 content/core/core_news/yyyy-mm-dd-9-3-0-available.md


[lucene-site] 02/02: Adding Lucene news for release 9.3.0

Posted by iv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit acdcce25529c17ed81e38e15a7d2549831dce82b
Author: iverase <iv...@apache.org>
AuthorDate: Fri Jul 29 09:18:29 2022 +0200

    Adding Lucene news for release 9.3.0
---
 .../core/core_news/yyyy-mm-dd-9-3-0-available.md   | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/content/core/core_news/yyyy-mm-dd-9-3-0-available.md b/content/core/core_news/yyyy-mm-dd-9-3-0-available.md
new file mode 100644
index 000000000..250b27cca
--- /dev/null
+++ b/content/core/core_news/yyyy-mm-dd-9-3-0-available.md
@@ -0,0 +1,25 @@
+Title: Apache Luceneā„¢ 9.3.0 available
+category: core/news
+URL:
+save_as:
+
+The Lucene PMC is pleased to announce the release of Apache Lucene 9.3.0.
+
+Apache Lucene is a high-performance, full-featured search engine library written entirely in Java. It is a technology suitable for nearly any application that requires structured search, full-text search, faceting, nearest-neighbor search across high-dimensionality vectors, spell correction or query suggestions.
+
+This release contains numerous bug fixes, optimizations, and improvements, some of which are highlighted below. The release is available for immediate download at:
+
+  <https://lucene.apache.org/core/downloads.html>
+
+### Lucene 9.3.0 Release Highlights:
+
+ * Merge on full flush is enabled now by default with a timeout of 500ms, giving the merge policy a chance to merge NRT segments together before publishing a new point-in-time view of the IndexReader. This should give queries a small performance boost in the near-realtime case, especially terms-dictionary-intensive queries like fuzzy queries.
+ * Add getAllChildren functionality to facets.
+ * Added facetsets module for high dimensional (hyper-rectangle) faceting. 
+ * Top-level two-clause disjunctions sorted by score now use the block-max MAXSCORE algorithm, which introduced a 40%-75% speedup in our benchmarks.
+ * BooleanQuery can return quick counts for simple boolean queries.
+ * When running KnnVectorQuery with a filter, reuse the cached filter bit set.
+
+Please read CHANGES.txt for a full list of new features and changes:
+
+  <https://lucene.apache.org/core/9_3_0/changes/Changes.html>


[lucene-site] 01/02: Update version variables for release 9.3.0

Posted by iv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f34b29f332d795a78b02bcd1f3ff6b1dc4557209
Author: iverase <iv...@apache.org>
AuthorDate: Fri Jul 29 09:11:49 2022 +0200

    Update version variables for release 9.3.0
---
 pelicanconf.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pelicanconf.py b/pelicanconf.py
index f9b32abd9..1668576d0 100755
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -10,8 +10,8 @@ SITESUBTITLE = ''
 SITEURL = ''
 CURRENTYEAR = date.today().year
 
-LUCENE_LATEST_RELEASE = '9.2.0'
-LUCENE_LATEST_RELEASE_DATE = datetime(2022, 5, 23)
+LUCENE_LATEST_RELEASE = '9.3.0'
+LUCENE_LATEST_RELEASE_DATE = datetime(2022, 7, 29)
 LUCENE_PREVIOUS_MAJOR_RELEASE = '8.11.2'
 
 # This string will be appended to all unversioned css and js resources to prevent caching surprises on edits.