You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2020/10/19 11:55:29 UTC

[lucene-solr] branch master updated (9ab9d20 -> b47ccbc)

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

cpoerschke pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 9ab9d20  SOLR-14944: Remove the "spins" metrics.
     new 6e25728  Fix 'an[d]' typo in three solrconfig.xml comments.
     new b47ccbc  Fix a highlight in query-settings-in-solrconfig.adoc file.

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


Summary of changes:
 .../src/test-files/clustering/solr/collection1/conf/solrconfig.xml      | 2 +-
 solr/server/solr/configsets/_default/conf/solrconfig.xml                | 2 +-
 .../solr/configsets/sample_techproducts_configs/conf/solrconfig.xml     | 2 +-
 solr/solr-ref-guide/src/query-settings-in-solrconfig.adoc               | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)


[lucene-solr] 01/02: Fix 'an[d]' typo in three solrconfig.xml comments.

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

cpoerschke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 6e2572882f2f16b42cb5cdcc109f67fe334846ca
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Mon Oct 19 12:16:49 2020 +0100

    Fix 'an[d]' typo in three solrconfig.xml comments.
---
 .../src/test-files/clustering/solr/collection1/conf/solrconfig.xml      | 2 +-
 solr/server/solr/configsets/_default/conf/solrconfig.xml                | 2 +-
 .../solr/configsets/sample_techproducts_configs/conf/solrconfig.xml     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/solr/contrib/clustering/src/test-files/clustering/solr/collection1/conf/solrconfig.xml b/solr/contrib/clustering/src/test-files/clustering/solr/collection1/conf/solrconfig.xml
index e8bc13a..340c370 100644
--- a/solr/contrib/clustering/src/test-files/clustering/solr/collection1/conf/solrconfig.xml
+++ b/solr/contrib/clustering/src/test-files/clustering/solr/collection1/conf/solrconfig.xml
@@ -85,7 +85,7 @@
          initialSize - the initial capacity (number of entries) of
            the cache.  (seel java.util.HashMap)
          autowarmCount - the number of entries to prepopulate from
-           and old cache.
+           an old cache.
          -->
     <filterCache
       class="solr.CaffeineCache"
diff --git a/solr/server/solr/configsets/_default/conf/solrconfig.xml b/solr/server/solr/configsets/_default/conf/solrconfig.xml
index 0b7a912..1243508 100644
--- a/solr/server/solr/configsets/_default/conf/solrconfig.xml
+++ b/solr/server/solr/configsets/_default/conf/solrconfig.xml
@@ -399,7 +399,7 @@
            initialSize - the initial capacity (number of entries) of
                the cache.  (see java.util.HashMap)
            autowarmCount - the number of entries to prepopulate from
-               and old cache.
+               an old cache.
            maxRamMB - the maximum amount of RAM (in MB) that this cache is allowed
                       to occupy. Note that when this option is specified, the size
                       and initialSize parameters are ignored.
diff --git a/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml b/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml
index 4395070..a367a8c 100644
--- a/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml
+++ b/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml
@@ -420,7 +420,7 @@
            initialSize - the initial capacity (number of entries) of
                the cache.  (see java.util.HashMap)
            autowarmCount - the number of entries to prepopulate from
-               and old cache.
+               an old cache.
            maxRamMB - the maximum amount of RAM (in MB) that this cache is allowed
                       to occupy. Note that when this option is specified, the size
                       and initialSize parameters are ignored.


[lucene-solr] 02/02: Fix a highlight in query-settings-in-solrconfig.adoc file.

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

cpoerschke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit b47ccbc618af74bfa8651b7650081e269dd4cdd2
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Mon Oct 19 12:18:33 2020 +0100

    Fix a highlight in query-settings-in-solrconfig.adoc file.
---
 solr/solr-ref-guide/src/query-settings-in-solrconfig.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/src/query-settings-in-solrconfig.adoc b/solr/solr-ref-guide/src/query-settings-in-solrconfig.adoc
index f209233..32cd051 100644
--- a/solr/solr-ref-guide/src/query-settings-in-solrconfig.adoc
+++ b/solr/solr-ref-guide/src/query-settings-in-solrconfig.adoc
@@ -117,7 +117,7 @@ You can also define named caches for your own application code to use. You can l
                           regenerator="org.mycompany.mypackage.MyRegenerator" />
 ----
 
-If you want auto-warming of your cache, include a `regenerator` attribute with the fully qualified name of a class that implements `solr.search.CacheRegenerator`. You can also use the `NoOpRegenerator`, which simply repopulates the cache with old items. Define it with the `regenerator` parameter as`: regenerator="solr.NoOpRegenerator"`.
+If you want auto-warming of your cache, include a `regenerator` attribute with the fully qualified name of a class that implements `solr.search.CacheRegenerator`. You can also use the `NoOpRegenerator`, which simply repopulates the cache with old items. Define it with the `regenerator` parameter as `regenerator="solr.NoOpRegenerator"`.
 
 == Query Sizing and Warming