Update website to better reflect what Lucene 9.0 can do.
diff --git a/content/pages/core/developer.md b/content/pages/core/developer.md
index 828bcff..be4a79a 100644
--- a/content/pages/core/developer.md
+++ b/content/pages/core/developer.md
@@ -10,8 +10,6 @@
 - Latest **main**:
 `git clone https://github.com/apache/lucene.git`
   
-**NOTE:** Until the Solr project split is complete, the code is still located in <https://github.com/apache/lucene-solr.git> 
-
 ## Making a Contribution
 Lucene Java is always looking for contributions. See the [Wiki][1] for details on contributing.
 
diff --git a/content/pages/core/discussion.md b/content/pages/core/discussion.md
index e24ee5a..d9c67f4 100644
--- a/content/pages/core/discussion.md
+++ b/content/pages/core/discussion.md
@@ -14,8 +14,7 @@
 - Subscribe: [java-user-subscribe](mailto:java-user-subscribe@lucene.apache.org)
 - Unsubscribe: [java-user-unsubscribe](mailto:java-user-unsubscribe@lucene.apache.org)
 - Send: [java-user](mailto:java-user@lucene.apache.org) \(Requires subscription\)
-- [Official Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-java-user/)
-- [Old Jakarta Archive](http://mail-archives.apache.org/mod_mbox/jakarta-lucene-user/)
+- [Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-java-user/)
 
 ## Developer Lists
 
@@ -30,7 +29,7 @@
 - Subscribe: [dev-subscribe](mailto:dev-subscribe@lucene.apache.org)
 - Unsubscribe: [dev-unsubscribe](mailto:dev-unsubscribe@lucene.apache.org)
 - Send: [dev](mailto:dev@lucene.apache.org) \(Requires subscription\)
-- [Official Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-dev/)
+- [Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-dev/)
 
 ### Issue Notifications: issues@lucene ###
 
@@ -50,7 +49,7 @@
 
 Unsubscribe: [builds-unsubscribe](mailto:builds-unsubscribe@lucene.apache.org)
 
-[Official Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-builds/)
+[Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-builds/)
 
 ### Commit Notifications: commits@lucene
 
@@ -58,7 +57,7 @@
 
 - Subscribe: [commits-subscribe](mailto:commits-subscribe@lucene.apache.org)
 - Unsubscribe: [commits-unsubscribe](mailto:commits-unsubscribe@lucene.apache.org)
-- [Official Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-commits/)
+- [Apache Archive](http://mail-archives.apache.org/mod_mbox/lucene-commits/)
 
 
 ## IRC
diff --git a/content/pages/core/features.md b/content/pages/core/features.md
index 5084022..d29db2e 100644
--- a/content/pages/core/features.md
+++ b/content/pages/core/features.md
@@ -7,7 +7,7 @@
 
 ## Scalable, High-Performance Indexing
 
-* over [150GB/hour on modern hardware](http://home.apache.org/~mikemccand/lucenebench/indexing.html)
+* over [800GB/hour on modern hardware](http://home.apache.org/~mikemccand/lucenebench/indexing.html)
 * small RAM requirements -- only 1MB heap
 * incremental indexing as fast as batch indexing
 * index size roughly 20-30% the size of text indexed
@@ -17,6 +17,7 @@
 * ranked searching -- best results returned first
 * many powerful query types: phrase queries, wildcard queries, proximity queries, range queries and more
 * fielded searching (e.g. title, author, contents)
+* nearest-neighbor search for high-dimensionality vectors
 * sorting by any field
 * multiple-index searching with merged results
 * allows simultaneous update and searching
diff --git a/content/pages/core/index.md b/content/pages/core/index.md
index 92c7643..92cc256 100644
--- a/content/pages/core/index.md
+++ b/content/pages/core/index.md
@@ -5,9 +5,10 @@
 template: lucene/core/page
 
 Apache Lucene™ is a
-high-performance, full-featured text search engine library written entirely in Java.
-It is a technology suitable for nearly any application that requires full-text search,
-especially cross-platform.
+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.
 
 Apache Lucene is an open source project available for free download. Please use the
 links on the right to access Lucene.
@@ -16,10 +17,9 @@
 
 Lucene offers powerful features through a simple API:
 
-
 ## Scalable, High-Performance Indexing
 
-- over [150GB/hour on modern hardware][1]
+- over [800GB/hour on modern hardware][1]
 - small RAM requirements -- only 1MB heap
 - incremental indexing as fast as batch indexing
 - index size roughly 20-30% the size of text indexed
@@ -30,6 +30,7 @@
 - many powerful query types: phrase queries, wildcard queries, proximity
   queries, range queries and more
 - fielded searching (e.g. title, author, contents)
+* nearest-neighbor search for high-dimensionality vectors
 - sorting by any field
 - multiple-index searching with merged results
 - allows simultaneous update and searching