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

(solr) branch branch_9_3 updated: SOLR-17075: Fix ref-guide links and renable site checks by default (#2075)

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

houston pushed a commit to branch branch_9_3
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9_3 by this push:
     new 7ba7b96fde4 SOLR-17075: Fix ref-guide links and renable site checks by default (#2075)
7ba7b96fde4 is described below

commit 7ba7b96fde48986eac9265a0f0d62d63b49d5a58
Author: Houston Putman <ho...@apache.org>
AuthorDate: Thu Nov 16 10:21:44 2023 -0500

    SOLR-17075: Fix ref-guide links and renable site checks by default (#2075)
    
    (cherry picked from commit ddcec23121c2a66ad18b456b1326c473f95525c8)
---
 solr/solr-ref-guide/build.gradle                                 | 2 +-
 solr/solr-ref-guide/modules/query-guide/pages/other-parsers.adoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/build.gradle b/solr/solr-ref-guide/build.gradle
index 0c42b97029b..8e08f10146e 100644
--- a/solr/solr-ref-guide/build.gradle
+++ b/solr/solr-ref-guide/build.gradle
@@ -40,7 +40,7 @@ def escapeYamlSingleQuotesString(props) {
 
 // Attach building the ref guide to standard convention tasks. This
 // can be optionally turned off (see SOLR-15670).
-var defaultRefGuideInclude = file('${rootDir}/.git').exists()
+var defaultRefGuideInclude = file("${rootDir}/.git").exists()
 if (propertyOrEnvOrDefault('refguide.include', 'SOLR_REF_GUIDE_INCLUDE', "${defaultRefGuideInclude}").toBoolean()) {
     check.dependsOn 'checkSiteLinks'
     assemble.dependsOn 'buildLocalSite'
diff --git a/solr/solr-ref-guide/modules/query-guide/pages/other-parsers.adoc b/solr/solr-ref-guide/modules/query-guide/pages/other-parsers.adoc
index 262e41b1992..a69fd3e9e97 100644
--- a/solr/solr-ref-guide/modules/query-guide/pages/other-parsers.adoc
+++ b/solr/solr-ref-guide/modules/query-guide/pages/other-parsers.adoc
@@ -369,7 +369,7 @@ The graph is built according to linkages between documents based on the terms fo
 
 Supported field types are point fields with docValues enabled, or string fields with `indexed=true` or `docValues=true`.
 
-TIP: For string fields which are `indexed=false` and `docValues=true`, please refer to the javadocs for {lucene-javadocs}/sandbox/org/apache/lucene/sandbox/search/DocValuesTermsQuery.html[`DocValuesTermsQuery`] for its performance characteristics so `indexed=true` will perform better for most use-cases.
+TIP: For string fields which are `indexed=false` and `docValues=true`, please refer to the javadocs for {lucene-javadocs}/core/org/apache/lucene/document/SortedDocValuesField.html#newSlowSetQuery(java.lang.String,org.apache.lucene.util.BytesRef...)[`SortedDocValuesField.newSlowSetQuery()`] for its performance characteristics so `indexed=true` will perform better for most use-cases.
 
 === Graph Query Parameters