You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2021/04/12 20:44:59 UTC

svn commit: r1073693 [11/19] - in /websites/production/lucene/content/solr/guide/8_8: ./ meta-docs/

Modified: websites/production/lucene/content/solr/guide/8_8/other-parsers.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/other-parsers.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/other-parsers.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Other Parsers | Apache Solr Reference Guide 8.8</title>
+<title>Other Parsers | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -2151,14 +2151,9 @@ After the <code>ttl</code> period has ex
 <section class="sect1"><h2 id="max-score-query-parser">Max Score Query Parser</h2><p>The <code>MaxScoreQParser</code> extends the <code>LuceneQParser</code> but returns the Max score from the clauses. It does this by wrapping all <code>SHOULD</code> clauses in a <code>DisjunctionMaxQuery</code> with <code>tie=1.0</code>. Any <code>MUST</code> or <code>PROHIBITED</code> clauses are passed through as-is. Non-boolean queries, e.g., NumericRange falls-through to the <code>LuceneQParser</code> parser behavior.</p>
 <p>Example:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>{!maxscore tie=0.01}C OR (D AND E)</code></pre></code></pre></div></section>
-<section class="sect1"><h2 id="more-like-this-query-parser">More Like This Query Parser</h2><p><code>MLTQParser</code> enables retrieving documents that are similar to a given document. It uses Lucene&#8217;s existing <code>MoreLikeThis</code> logic and also works in SolrCloud mode. The document identifier used here is the unique id value and not the Lucene internal document id. The list of returned documents excludes the queried document.</p>
-<p>This query parser takes the following parameters:</p>
-<div class="dlist"><dl><dt><code>qf</code></dt><dd>Specifies the fields to use for similarity.</dd><dt><code>mintf</code></dt><dd>Specifies the Minimum Term Frequency, the frequency below which terms will be ignored in the source document.</dd><dt><code>mindf</code></dt><dd>Specifies the Minimum Document Frequency, the frequency at which words will be ignored when they do not occur in at least this many documents.</dd><dt><code>maxdf</code></dt><dd>Specifies the Maximum Document Frequency, the frequency at which words will be ignored when they occur in more than this many documents.</dd><dt><code>minwl</code></dt><dd>Sets the minimum word length below which words will be ignored.</dd><dt><code>maxwl</code></dt><dd>Sets the maximum word length above which words will be ignored.</dd><dt><code>maxqt</code></dt><dd>Sets the maximum number of query terms that will be included in any generated query.</dd><dt><code>maxntp</code></dt><dd>Sets the maximum number of tokens to parse in each ex
 ample document field that is not stored with TermVector support.</dd><dt><code>boost</code></dt><dd>Specifies if the query will be boosted by the interesting term relevance. It can be either "true" or "false".</dd></dl></div>
-<p><strong>Examples</strong></p>
-<p>Find documents like the document with id=1 and using the <code>name</code> field for similarity.</p>
-<div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>{!mlt qf=name}1</code></pre></code></pre></div>
-<p>Adding more constraints to what qualifies as similar using mintf and mindf.</p>
-<div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>{!mlt qf=name mintf=2 mindf=3}1</code></pre></code></pre></div></section>
+<section class="sect1"><h2 id="more-like-this-query-parser">More Like This Query Parser</h2><p>The <code>MLTQParser</code> enables retrieving documents that are similar to a given document.
+It uses Lucene&#8217;s existing <code>MoreLikeThis</code> logic and also works in SolrCloud mode.
+Information about how to use this query parser is with the documentation about MoreLikeThis, in the section <a href="morelikethis.html#morelikethis-query-parser">MoreLikeThis Query Parser</a>.</p></section>
 <section class="sect1"><h2 id="nested-query-parser">Nested Query Parser</h2><p>The <code>NestedParser</code> extends the <code>QParserPlugin</code> and creates a nested query, with the ability for that query to redefine its type via local parameters. This is useful in specifying defaults in configuration and letting clients indirectly reference them.</p>
 <p>Example:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>{!query defType=func v=$q1}</code></pre></code></pre></div>
@@ -2194,7 +2189,7 @@ After the <code>ttl</code> period has ex
 <p>This example constructs the query: <code>TermQuery(Term("myfield","Foo Bar"))</code>.</p>
 <p>For easy filter construction to drill down in faceting, the <a href="#term-query-parser">TermQParserPlugin</a> is recommended.</p>
 <p>For full analysis on all fields, including text fields, you may want to use the <a href="#field-query-parser">FieldQParserPlugin</a>.</p></section>
-<section class="sect1"><h2 id="ranking-query-parser">Ranking Query Parser</h2><p>The <code>RankQParserPlugin</code> is a faster implementation of ranking-related features of <code>FunctionQParser</code> and can work together with specialized field of <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/schema/RankField.html"><code>RankFields</code></a> type.</p>
+<section class="sect1"><h2 id="ranking-query-parser">Ranking Query Parser</h2><p>The <code>RankQParserPlugin</code> is a faster implementation of ranking-related features of <code>FunctionQParser</code> and can work together with specialized field of <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/schema/RankField.html"><code>RankFields</code></a> type.</p>
 <p>It allows queries like:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>http://localhost:8983/solr/techproducts?q=memory _query_:{!rank f='pagerank', function='log' scalingFactor='1.2'}</code></pre></code></pre></div></section>
 <section class="sect1"><h2 id="re-ranking-query-parser">Re-Ranking Query Parser</h2><p>The <code>ReRankQParserPlugin</code> is a special purpose parser for Re-Ranking the top results of a simple query using a more complex ranking query.</p>
@@ -2260,7 +2255,7 @@ After the <code>ttl</code> period has ex
 <p><strong>Examples</strong></p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>{!terms f=tags}software,apache,solr,lucene</code></pre></code></pre></div>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-text" data-lang="text"><pre class="highlight"><code>{!terms f=categoryId method=booleanQuery separator=" "}8 6 7 5309</code></pre></code></pre></div></section>
-<section class="sect1"><h2 id="xml-query-parser">XML Query Parser</h2><p>The <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/XmlQParserPlugin.html">XmlQParserPlugin</a> extends the <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/QParserPlugin.html">QParserPlugin</a> and supports the creation of queries from XML. Example:</p>
+<section class="sect1"><h2 id="xml-query-parser">XML Query Parser</h2><p>The <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/XmlQParserPlugin.html">XmlQParserPlugin</a> extends the <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/QParserPlugin.html">QParserPlugin</a> and supports the creation of queries from XML. Example:</p>
 <div class="tableblock"><table class="tableblock frame-all grid-all spread"><colgroup><col style="width: 30%;"><col style="width: 70%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Parameter</th><th class="tableblock halign-left valign-top">Value</th></tr><tbody><tr><td class="tableblock halign-left valign-top">defType</td><td class="tableblock halign-left valign-top"><code>xmlparser</code></td></tr><tr><td class="tableblock halign-left valign-top">q</td><td class="tableblock halign-left valign-top"><div class="listingblock"><pre class="rouge highlight"><code class="language-xml" data-lang="xml"><pre class="highlight"><code><span style="color: #000080">&lt;BooleanQuery</span> <span style="color: #008080">fieldName=</span><span style="color: #d14">"description"</span><span style="color: #000080">&gt;</span>
    <span style="color: #000080">&lt;Clause</span> <span style="color: #008080">occurs=</span><span style="color: #d14">"must"</span><span style="color: #000080">&gt;</span>
       <span style="color: #000080">&lt;TermQuery&gt;</span>shirt<span style="color: #000080">&lt;/TermQuery&gt;</span>
@@ -2279,9 +2274,9 @@ After the <code>ttl</code> period has ex
       <span style="color: #000080">&lt;/BooleanQuery&gt;</span>
    <span style="color: #000080">&lt;/Clause&gt;</span>
 <span style="color: #000080">&lt;/BooleanQuery&gt;</span></code></pre></code></pre></div></td></tr></table></div>
-<p>The XmlQParser implementation uses the <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/SolrCoreParser.html">SolrCoreParser</a> class which extends Lucene&#8217;s <a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/CoreParser.html">CoreParser</a> class. XML elements are mapped to <a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/QueryBuilder.html">QueryBuilder</a> classes as follows:</p>
+<p>The XmlQParser implementation uses the <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/SolrCoreParser.html">SolrCoreParser</a> class which extends Lucene&#8217;s <a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/CoreParser.html">CoreParser</a> class. XML elements are mapped to <a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/QueryBuilder.html">QueryBuilder</a> classes as follows:</p>
 <div class="tableblock"><table class="tableblock frame-all grid-all spread" style="width: 100%;"><colgroup><col style="width: 30%;"><col style="width: 70%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">XML element</th><th class="tableblock halign-left valign-top">QueryBuilder class</th></tr><tbody><tr><td class="tableblock halign-left valign-top">&lt;BooleanQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/BooleanQueryBuilder.html">BooleanQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;BoostingTermQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/BoostingTermBuilder.html">BoostingTermBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;ConstantScoreQuery&gt;</td><td class="tableblock hal
 ign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/ConstantScoreQueryBuilder.html">ConstantScoreQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;DisjunctionMaxQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/DisjunctionMaxQueryBuilder.html">DisjunctionMaxQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;MatchAllDocsQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/MatchAllDocsQueryBuilder.html">MatchAllDocsQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;RangeQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/querypa
 rser/xml/builders/RangeQueryBuilder.html">RangeQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanFirst&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanFirstBuilder.html">SpanFirstBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanPositionRange&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanPositionRangeBuilder.html">SpanPositionRangeBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanNear&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanNearBuilder.html">SpanNearBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanNot&gt;</td><td class="tab
 leblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanNotBuilder.html">SpanNotBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanOr&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanOrBuilder.html">SpanOrBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanOrTerms&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanOrTermsBuilder.html">SpanOrTermsBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;SpanTerm&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/SpanTermBuilder.html">SpanTermBuilder</a></td></tr><
 tr><td class="tableblock halign-left valign-top">&lt;TermQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/TermQueryBuilder.html">TermQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;TermsQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/TermsQueryBuilder.html">TermsQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;UserQuery&gt;</td><td class="tableblock halign-left valign-top"><a href="https://lucene.apache.org/core/8_8_0//queryparser/org/apache/lucene/queryparser/xml/builders/UserInputQueryBuilder.html">UserInputQueryBuilder</a></td></tr><tr><td class="tableblock halign-left valign-top">&lt;LegacyNumericRangeQuery&gt;</td><td class="tableblock halign-left valign-top">LegacyNumericRangeQuery(Builder) i
 s deprecated</td></tr></table></div>
-<section class="sect2"><h3 id="customizing-xml-query-parser">Customizing XML Query Parser</h3><p>You can configure your own custom query builders for additional XML elements. The custom builders need to extend the <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/SolrQueryBuilder.html">SolrQueryBuilder</a> or the <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/SolrSpanQueryBuilder.html">SolrSpanQueryBuilder</a> class. Example <code>solrconfig.xml</code> snippet:</p>
+<section class="sect2"><h3 id="customizing-xml-query-parser">Customizing XML Query Parser</h3><p>You can configure your own custom query builders for additional XML elements. The custom builders need to extend the <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/SolrQueryBuilder.html">SolrQueryBuilder</a> or the <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/SolrSpanQueryBuilder.html">SolrSpanQueryBuilder</a> class. Example <code>solrconfig.xml</code> snippet:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-xml" data-lang="xml"><pre class="highlight"><code><span style="color: #000080">&lt;queryParser</span> <span style="color: #008080">name=</span><span style="color: #d14">"xmlparser"</span> <span style="color: #008080">class=</span><span style="color: #d14">"XmlQParserPlugin"</span><span style="color: #000080">&gt;</span>
   <span style="color: #000080">&lt;str</span> <span style="color: #008080">name=</span><span style="color: #d14">"MyCustomQuery"</span><span style="color: #000080">&gt;</span>com.mycompany.solr.search.MyCustomQueryBuilder<span style="color: #000080">&lt;/str&gt;</span>
 <span style="color: #000080">&lt;/queryParser&gt;</span></code></pre></code></pre></div></section></section>
@@ -2314,7 +2309,7 @@ After the <code>ttl</code> period has ex
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/other-schema-elements.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/other-schema-elements.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/other-schema-elements.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Other Schema Elements | Apache Solr Reference Guide 8.8</title>
+<title>Other Schema Elements | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1688,7 +1688,7 @@
 <p>Schema defaults and <code>copyFields</code> cannot be used to populate the <code>uniqueKey</code> field. The <code>fieldType</code> of <code>uniqueKey</code> must not be analyzed and must not be any of the <code>*PointField</code> types. You can use <code>UUIDUpdateProcessorFactory</code> to have <code>uniqueKey</code> values generated automatically.</p>
 <p>Further, the operation will fail if the <code>uniqueKey</code> field is used, but is multivalued (or inherits the multivalue-ness from the <code>fieldtype</code>). However, <code>uniqueKey</code> will continue to work, as long as the field is properly used.</p></section>
 <section class="sect1"><h2 id="similarity">Similarity</h2><p>Similarity is a Lucene class used to score a document in searching.</p>
-<p>Each collection has one "global" Similarity, and by default Solr uses an implicit <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/similarities/SchemaSimilarityFactory.html"><code>SchemaSimilarityFactory</code></a> which allows individual field types to be configured with a "per-type" specific Similarity and implicitly uses <code>BM25Similarity</code> for any field type which does not have an explicit Similarity.</p>
+<p>Each collection has one "global" Similarity, and by default Solr uses an implicit <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/similarities/SchemaSimilarityFactory.html"><code>SchemaSimilarityFactory</code></a> which allows individual field types to be configured with a "per-type" specific Similarity and implicitly uses <code>BM25Similarity</code> for any field type which does not have an explicit Similarity.</p>
 <p>This default behavior can be overridden by declaring a top level <code>&lt;similarity/&gt;</code> element in your <code>schema.xml</code>, outside of any single field type. This similarity declaration can either refer directly to the name of a class with a no-argument constructor, such as in this example showing <code>BM25Similarity</code>:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-xml" data-lang="xml"><pre class="highlight"><code><span style="color: #000080">&lt;similarity</span> <span style="color: #008080">class=</span><span style="color: #d14">"solr.BM25SimilarityFactory"</span><span style="color: #000080">/&gt;</span></code></pre></code></pre></div>
 <p>or by referencing a <code>SimilarityFactory</code> implementation, which may take optional initialization parameters:</p>
@@ -1698,7 +1698,7 @@
   <span style="color: #000080">&lt;str</span> <span style="color: #008080">name=</span><span style="color: #d14">"normalization"</span><span style="color: #000080">&gt;</span>H2<span style="color: #000080">&lt;/str&gt;</span>
   <span style="color: #000080">&lt;float</span> <span style="color: #008080">name=</span><span style="color: #d14">"c"</span><span style="color: #000080">&gt;</span>7<span style="color: #000080">&lt;/float&gt;</span>
 <span style="color: #000080">&lt;/similarity&gt;</span></code></pre></code></pre></div>
-<p>In most cases, specifying global level similarity like this will cause an error if your <code>schema.xml</code> also includes field type specific <code>&lt;similarity/&gt;</code> declarations. One key exception to this is that you may explicitly declare a <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/search/similarities/SchemaSimilarityFactory.html"><code>SchemaSimilarityFactory</code></a> and specify what that default behavior will be for all field types that do not declare an explicit Similarity using the name of field type (specified by <code>defaultSimFromFieldType</code>) that <em>is</em> configured with a specific similarity:</p>
+<p>In most cases, specifying global level similarity like this will cause an error if your <code>schema.xml</code> also includes field type specific <code>&lt;similarity/&gt;</code> declarations. One key exception to this is that you may explicitly declare a <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/search/similarities/SchemaSimilarityFactory.html"><code>SchemaSimilarityFactory</code></a> and specify what that default behavior will be for all field types that do not declare an explicit Similarity using the name of field type (specified by <code>defaultSimFromFieldType</code>) that <em>is</em> configured with a specific similarity:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-xml" data-lang="xml"><pre class="highlight"><code><span style="color: #000080">&lt;similarity</span> <span style="color: #008080">class=</span><span style="color: #d14">"solr.SchemaSimilarityFactory"</span><span style="color: #000080">&gt;</span>
   <span style="color: #000080">&lt;str</span> <span style="color: #008080">name=</span><span style="color: #d14">"defaultSimFromFieldType"</span><span style="color: #000080">&gt;</span>text_dfr<span style="color: #000080">&lt;/str&gt;</span>
 <span style="color: #000080">&lt;/similarity&gt;</span>
@@ -1724,7 +1724,7 @@
 <span style="color: #000080">&lt;/fieldType&gt;</span></code></pre></code></pre></div>
 <p>In the example above <code>IBSimilarityFactory</code> (using the Information-Based model) will be used for any fields of type <code>text_ib</code>, while <code>DFRSimilarityFactory</code> (divergence from random) will be used for any fields of type <code>text_dfr</code>, as well as any fields using a type that does not explicitly specify a <code>&lt;similarity/&gt;</code>.</p>
 <p>If <code>SchemaSimilarityFactory</code> is explicitly declared without configuring a <code>defaultSimFromFieldType</code>, then <code>BM25Similarity</code> is implicitly used as the default for <code>luceneMatchVersion &gt;= 8.0.0</code> and otherwise <code>LegacyBM25Similarity</code> is used to mimic the same BM25 formula that was the default in those versions.</p>
-<p>In addition to the various factories mentioned on this page, there are several other similarity implementations that can be used such as the <code>SweetSpotSimilarityFactory</code>, <code>ClassicSimilarityFactory</code>, <code>LegacyBM25SimilarityFactory</code> etc. For details, see the Solr Javadocs for the <a href="https://lucene.apache.org/solr/8_8_0//solr-core/org/apache/solr/schema/SimilarityFactory.html">similarity factories</a>.</p></section>
+<p>In addition to the various factories mentioned on this page, there are several other similarity implementations that can be used such as the <code>SweetSpotSimilarityFactory</code>, <code>ClassicSimilarityFactory</code>, <code>LegacyBM25SimilarityFactory</code> etc. For details, see the Solr Javadocs for the <a href="https://solr.apache.org/docs/8_8_0//solr-core/org/apache/solr/schema/SimilarityFactory.html">similarity factories</a>.</p></section>
   </section>
 
 
@@ -1754,7 +1754,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/overview-of-documents-fields-and-schema-design.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/overview-of-documents-fields-and-schema-design.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/overview-of-documents-fields-and-schema-design.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Overview of Documents, Fields, and Schema Design | Apache Solr Reference Guide 8.8</title>
+<title>Overview of Documents, Fields, and Schema Design | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1729,7 +1729,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/overview-of-searching-in-solr.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/overview-of-searching-in-solr.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/overview-of-searching-in-solr.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Overview of Searching in Solr | Apache Solr Reference Guide 8.8</title>
+<title>Overview of Searching in Solr | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1726,7 +1726,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/overview-of-the-solr-admin-ui.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/overview-of-the-solr-admin-ui.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/overview-of-the-solr-admin-ui.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Overview of the Solr Admin UI | Apache Solr Reference Guide 8.8</title>
+<title>Overview of the Solr Admin UI | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1719,7 +1719,7 @@ However, if the user does not have a val
 <figure class="imageblock"><img src="images/getting-assistance/Assistance.png" alt="image">
 <figcaption>Figure 3. Assistance icons</figcaption></figure>
 <p>These icons include the following links.</p>
-<div class="tableblock"><table class="tableblock frame-all grid-all spread"><colgroup><col style="width: 25%;"><col style="width: 75%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Link</th><th class="tableblock halign-left valign-top">Description</th></tr><tbody><tr><td class="tableblock halign-left valign-top">Documentation</td><td class="tableblock halign-left valign-top">Navigates to the Apache Solr documentation hosted on <a class="bare" href="https://lucene.apache.org/solr/">https://lucene.apache.org/solr/</a>.</td></tr><tr><td class="tableblock halign-left valign-top">Issue Tracker</td><td class="tableblock halign-left valign-top">Navigates to the JIRA issue tracking server for the Apache Solr project. This server resides at <a class="bare" href="https://issues.apache.org/jira/browse/SOLR">https://issues.apache.org/jira/browse/SOLR</a>.</td></tr><tr><td class="tableblock halign-left valign-top">IRC Channel</td><td class="tableblock halign-left valign-to
 p">Navigates to Solr&#8217;s <a href="http://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a> live-chat room: <a class="bare" href="http://webchat.freenode.net/?channels=#solr">http://webchat.freenode.net/?channels=#solr</a>.</td></tr><tr><td class="tableblock halign-left valign-top">Community forum</td><td class="tableblock halign-left valign-top">Navigates to the Apache Wiki page which has further information about ways to engage in the Solr User community mailing lists: <a class="bare" href="https://cwiki.apache.org/confluence/display/solr/UsingMailingLists">https://cwiki.apache.org/confluence/display/solr/UsingMailingLists</a>.</td></tr><tr><td class="tableblock halign-left valign-top">Solr Query Syntax</td><td class="tableblock halign-left valign-top">Navigates to the section <a href="query-syntax-and-parsing.html#query-syntax-and-parsing">Query Syntax and Parsing</a> in this Reference Guide.</td></tr></table></div>
+<div class="tableblock"><table class="tableblock frame-all grid-all spread"><colgroup><col style="width: 25%;"><col style="width: 75%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Link</th><th class="tableblock halign-left valign-top">Description</th></tr><tbody><tr><td class="tableblock halign-left valign-top">Documentation</td><td class="tableblock halign-left valign-top">Navigates to the Apache Solr documentation hosted on <a class="bare" href="https://solr.apache.org/">https://solr.apache.org/</a>.</td></tr><tr><td class="tableblock halign-left valign-top">Issue Tracker</td><td class="tableblock halign-left valign-top">Navigates to the JIRA issue tracking server for the Apache Solr project. This server resides at <a class="bare" href="https://issues.apache.org/jira/browse/SOLR">https://issues.apache.org/jira/browse/SOLR</a>.</td></tr><tr><td class="tableblock halign-left valign-top">IRC Channel</td><td class="tableblock halign-left valign-top">Navigates t
 o Solr&#8217;s <a href="http://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a> live-chat room: <a class="bare" href="http://webchat.freenode.net/?channels=#solr">http://webchat.freenode.net/?channels=#solr</a>.</td></tr><tr><td class="tableblock halign-left valign-top">Community forum</td><td class="tableblock halign-left valign-top">Navigates to the Apache Wiki page which has further information about ways to engage in the Solr User community mailing lists: <a class="bare" href="https://cwiki.apache.org/confluence/display/solr/UsingMailingLists">https://cwiki.apache.org/confluence/display/solr/UsingMailingLists</a>.</td></tr><tr><td class="tableblock halign-left valign-top">Solr Query Syntax</td><td class="tableblock halign-left valign-top">Navigates to the section <a href="query-syntax-and-parsing.html#query-syntax-and-parsing">Query Syntax and Parsing</a> in this Reference Guide.</td></tr></table></div>
 <p>These links cannot be modified without editing the <code>index.html</code> in the <code>server/solr/solr-webapp</code> directory that contains the Admin UI files.</p></section>
   </section>
 
@@ -1750,7 +1750,7 @@ However, if the user does not have a val
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/package-manager-internals.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/package-manager-internals.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/package-manager-internals.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Package Manager Internals | Apache Solr Reference Guide 8.8</title>
+<title>Package Manager Internals | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1877,7 +1877,7 @@ A set of named classloaders that inherit
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/package-manager.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/package-manager.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/package-manager.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Package Management | Apache Solr Reference Guide 8.8</title>
+<title>Package Management | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1798,7 +1798,7 @@ If you pass <code>-y</code> to the comma
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/pagination-of-results.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/pagination-of-results.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/pagination-of-results.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Pagination of Results | Apache Solr Reference Guide 8.8</title>
+<title>Pagination of Results | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1869,7 +1869,7 @@ For certain specialized cases, the <a hr
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/parallel-sql-interface.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/parallel-sql-interface.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/parallel-sql-interface.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Parallel SQL Interface | Apache Solr Reference Guide 8.8</title>
+<title>Parallel SQL Interface | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1945,7 +1945,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/parameter-reference.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/parameter-reference.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/parameter-reference.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Parameter Reference | Apache Solr Reference Guide 8.8</title>
+<title>Parameter Reference | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1719,7 +1719,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/performance-statistics-reference.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/performance-statistics-reference.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/performance-statistics-reference.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Performance Statistics Reference | Apache Solr Reference Guide 8.8</title>
+<title>Performance Statistics Reference | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1780,7 +1780,7 @@ i.e., being processed only by the Solr c
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/phonetic-matching.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/phonetic-matching.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/phonetic-matching.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Phonetic Matching | Apache Solr Reference Guide 8.8</title>
+<title>Phonetic Matching | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1754,7 +1754,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/ping.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/ping.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/ping.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Ping | Apache Solr Reference Guide 8.8</title>
+<title>Ping | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1746,7 +1746,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/plugins-stats-screen.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/plugins-stats-screen.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/plugins-stats-screen.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Plugins &amp; Stats Screen | Apache Solr Reference Guide 8.8</title>
+<title>Plugins &amp; Stats Screen | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1712,7 +1712,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/post-tool.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/post-tool.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/post-tool.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Post Tool | Apache Solr Reference Guide 8.8</title>
+<title>Post Tool | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1790,7 +1790,7 @@ The <code>-Dauto</code> System property
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/probability-distributions.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/probability-distributions.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/probability-distributions.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Probability Distributions | Apache Solr Reference Guide 8.8</title>
+<title>Probability Distributions | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1960,7 +1960,7 @@ multivariate normal distribution.</p>
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_8/putting-the-pieces-together.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_8/putting-the-pieces-together.html (original)
+++ websites/production/lucene/content/solr/guide/8_8/putting-the-pieces-together.html Mon Apr 12 20:44:57 2021
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Putting the Pieces Together | Apache Solr Reference Guide 8.8</title>
+<title>Putting the Pieces Together | Apache Solr Reference Guide 8.8.2</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -1635,22 +1635,22 @@
         <div class="collapse navbar-collapse justify-content-end" id="bs-example-navbar-collapse-1">
             <ul class="nav navbar-nav navbar-right">
                 <!-- Link to Solr website -->
-                <li><a href="https://lucene.apache.org/solr/" target="_blank">Solr Website</a></li>
+                <li><a href="https://solr.apache.org/" target="_blank">Solr Website</a></li>
                 <!-- Other Guide Formats dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Formats<b class="caret"></b></a>
                     <ul class="dropdown-menu">
                        <li><a href="https://archive.apache.org/dist/lucene/solr/ref-guide/" target="_blank">Archived PDFs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/guide/" target="_blank">Other Versions Online</a></li>
+                       <li><a href="https://solr.apache.org/guide/" target="_blank">Other Versions Online</a></li>
                     </ul>
                 </li>
                 <!-- Solr Resources dropdown -->
                 <li class="dropdown">
                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Solr Resources<b class="caret"></b></a>
                     <ul class="dropdown-menu">
-                       <li><a href="https://lucene.apache.org/solr/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
-                       <li><a href="https://lucene.apache.org/solr/community.html" target="_blank">Solr Community Links</a></li>
+                       <li><a href="https://solr.apache.org/docs/8_8_0//solr-core/index.html" target="_blank">Solr Javadocs</a></li>
+                       <li><a href="https://solr.apache.org/community.html#version-control" target="_blank">Lucene/Solr Source Code</a></li>
+                       <li><a href="https://solr.apache.org/community.html" target="_blank">Solr Community Links</a></li>
                     </ul>
                 </li>
 
@@ -1747,7 +1747,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2021 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.8 <br />Site last generated: 2021-01-28 <br />
+ Site Version: 8.8.2 <br />Site last generated: 2021-04-12 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>