You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by sv...@apache.org on 2023/11/17 15:23:25 UTC

svn commit: r1084732 [3/3] - in /sites/solr/guide: ./ solr/9_3/query-guide/ solr/latest/deployment-guide/ solr/latest/getting-started/ solr/latest/indexing-guide/ solr/latest/query-guide/ solr/latest/upgrade-notes/

Modified: sites/solr/guide/solr/9_3/query-guide/other-parsers.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/9_3/query-guide/other-parsers.html?rev=1084732&r1=1084731&r2=1084732&view=diff
==============================================================================
--- sites/solr/guide/solr/9_3/query-guide/other-parsers.html (original)
+++ sites/solr/guide/solr/9_3/query-guide/other-parsers.html Fri Nov 17 15:23:25 2023
@@ -1659,7 +1659,7 @@ In the second example, we’re doing
 <i class="fa icon-tip" title="Tip"></i>
 </td>
 <td class="content">
-For string fields which are <code>indexed=false</code> and <code>docValues=true</code>, please refer to the javadocs for <a href="https://lucene.apache.org/core/9_7_0/sandbox/org/apache/lucene/sandbox/search/DocValuesTermsQuery.html"><code>DocValuesTermsQuery</code></a> for its performance characteristics so <code>indexed=true</code> will perform better for most use-cases.
+For string fields which are <code>indexed=false</code> and <code>docValues=true</code>, please refer to the javadocs for <a href="https://lucene.apache.org/core/9_7_0/core/org/apache/lucene/document/SortedDocValuesField.html#newSlowSetQuery(java.lang.String,org.apache.lucene.util.BytesRef&#8230;&#8203;)"><code>SortedDocValuesField.newSlowSetQuery()</code></a> for its performance characteristics so <code>indexed=true</code> will perform better for most use-cases.
 </td>
 </tr>
 </table>

Modified: sites/solr/guide/solr/latest/deployment-guide/circuit-breakers.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/deployment-guide/circuit-breakers.html?rev=1084732&r1=1084731&r2=1084732&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/deployment-guide/circuit-breakers.html (original)
+++ sites/solr/guide/solr/latest/deployment-guide/circuit-breakers.html Fri Nov 17 15:23:25 2023
@@ -1121,7 +1121,7 @@ If circuit breakers are enabled, request
 <p>In a sharded collection, when a circuit breaker trips on one shard, the entire query will fail,
 even if the other shard requests succeed. This will multiply the failures seen by the end users.
 Setting the <code>shards.tolerant=true</code> parameter on requests can help with graceful degradation when
-circuit breaker thresholds are reached on some nodes. See the <a href="#shards.tolerant Parameter">[shards.tolerant Parameter]</a> for details.</p>
+circuit breaker thresholds are reached on some nodes. See the <a href="solrcloud-distributed-requests.html#shards-tolerant-parameter" class="xref page"><code>shards.tolerant</code> Parameter</a> for details.</p>
 </div>
 </div>
 </div>

Modified: sites/solr/guide/solr/latest/getting-started/tutorial-techproducts.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/getting-started/tutorial-techproducts.html?rev=1084732&r1=1084731&r2=1084732&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/getting-started/tutorial-techproducts.html (original)
+++ sites/solr/guide/solr/latest/getting-started/tutorial-techproducts.html Fri Nov 17 15:23:25 2023
@@ -1286,8 +1286,8 @@ We&#8217;ll use this tool for the indexi
 <i class="fa icon-note" title="Note"></i>
 </td>
 <td class="content">
-Currently the <code>bin/post</code> tool does not have a comparable Windows script, but the underlying Java program invoked is available.
-We&#8217;ll show examples below for Windows, but you can also see the section <a href="../indexing-guide/post-tool.html#post-tool-windows-support" class="xref page">Post Tool Windows Support</a>.
+Currently the <code>bin/post</code> tool does not have a comparable Windows script, but the <code>bin/solr post</code> command is available on Windows.
+See the section <a href="../indexing-guide/post-tool.html" class="xref page">Post Tool</a> for more information.
 </td>
 </tr>
 </table>

Modified: sites/solr/guide/solr/latest/indexing-guide/post-tool.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/indexing-guide/post-tool.html?rev=1084732&r1=1084731&r2=1084732&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/indexing-guide/post-tool.html (original)
+++ sites/solr/guide/solr/latest/indexing-guide/post-tool.html Fri Nov 17 15:23:25 2023
@@ -1105,7 +1105,7 @@
 </div>
 <div class="paragraph">
 <p>The tool is <code>bin/solr post</code>.
-The bin/solr post tool is a Unix shell script; for Windows (non-Cygwin) usage, see the section <a href="#Post Tool Windows Support">[Post Tool Windows Support]</a> below.</p>
+The bin/solr post tool is a Unix shell script; for Windows (non-Cygwin) usage,use <code>bin/solr.cmd post</code>.</p>
 </div>
 <div class="admonitionblock note">
 <table>

Modified: sites/solr/guide/solr/latest/query-guide/other-parsers.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/query-guide/other-parsers.html?rev=1084732&r1=1084731&r2=1084732&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/query-guide/other-parsers.html (original)
+++ sites/solr/guide/solr/latest/query-guide/other-parsers.html Fri Nov 17 15:23:25 2023
@@ -1659,7 +1659,7 @@ In the second example, we&#8217;re doing
 <i class="fa icon-tip" title="Tip"></i>
 </td>
 <td class="content">
-For string fields which are <code>indexed=false</code> and <code>docValues=true</code>, please refer to the javadocs for <a href="https://lucene.apache.org/core/9_8_0/sandbox/org/apache/lucene/sandbox/search/DocValuesTermsQuery.html"><code>DocValuesTermsQuery</code></a> for its performance characteristics so <code>indexed=true</code> will perform better for most use-cases.
+For string fields which are <code>indexed=false</code> and <code>docValues=true</code>, please refer to the javadocs for <a href="https://lucene.apache.org/core/9_8_0/core/org/apache/lucene/document/SortedDocValuesField.html#newSlowSetQuery(java.lang.String,org.apache.lucene.util.BytesRef&#8230;&#8203;)"><code>SortedDocValuesField.newSlowSetQuery()</code></a> for its performance characteristics so <code>indexed=true</code> will perform better for most use-cases.
 </td>
 </tr>
 </table>

Modified: sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html
URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html?rev=1084732&r1=1084731&r2=1084732&view=diff
==============================================================================
--- sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html (original)
+++ sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html Fri Nov 17 15:23:25 2023
@@ -1191,7 +1191,7 @@ Due to changes in Lucene 9, that isn&#82
 <li>
 <p>The build in ConfigSets (<code>_default</code> and <code>sample_techproducts_configs</code>), now use a default <code>autoSoftCommit</code> time of 3 seconds,
 meaning that documents will be searchable within 3 seconds of uploading them.
-Please refer to the <a href="#configuration-guide:commits-transaction-logs.html#hard-commits-vs-soft-commits" class="xref unresolved">Soft Commit documentation</a>
+Please refer to the <a href="../configuration-guide/commits-transaction-logs.html#hard-commits-vs-soft-commits" class="xref page">Soft Commit documentation</a>
 for more information on how this change will effect you.
 Upgrading existing clouds and use-cases that have custom configSets will not be affected by this change.</p>
 </li>