You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2017/06/07 14:11:24 UTC

[20/50] [abbrv] lucene-solr:feature/autoscaling: Ref Guide: add new level-2 header to fix out of order heading levels

Ref Guide: add new level-2 header to fix out of order heading levels


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a477ebb9
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a477ebb9
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a477ebb9

Branch: refs/heads/feature/autoscaling
Commit: a477ebb9852bfd828352e5d5eef9ce42c6a83b9c
Parents: 07bcd4d
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Jun 2 14:50:03 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Jun 2 14:52:02 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/codec-factory.adoc | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a477ebb9/solr/solr-ref-guide/src/codec-factory.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/codec-factory.adoc b/solr/solr-ref-guide/src/codec-factory.adoc
index 88bc083..8f47038 100644
--- a/solr/solr-ref-guide/src/codec-factory.adoc
+++ b/solr/solr-ref-guide/src/codec-factory.adoc
@@ -22,14 +22,12 @@ A `codecFactory` can be specified in `solrconfig.xml` to determine which Lucene
 
 If not specified, Lucene's default codec is implicitly used.
 
-There are two alternatives to Lucene's default codec:
+== Alternatives to the Default Codec
+There are two alternatives to Lucene's default codec.
 
-. {solr-javadocs}/solr-core/org/apache/solr/core/SchemaCodecFactory.html[`solr.SchemaCodecFactory`] 
-. {solr-javadocs}/solr-core/org/apache/solr/core/SimpleTextCodecFactory.html[`solr.SimpleTextCodecFactory`] 
- 
 === solr.SchemaCodecFactory
 
-`solr.SchemaCodecFactory` supports 2 key features:
+The {solr-javadocs}/solr-core/org/apache/solr/core/SchemaCodecFactory.html[`solr.SchemaCodecFactory`] supports 2 key features:
 
 * Schema based per-fieldtype configuration for `docValuesFormat` and `postingsFormat` - see the <<field-type-definitions-and-properties.adoc#field-type-properties,Field Type Properties>> section for more details.
 * A `compressionMode` option:
@@ -47,9 +45,9 @@ Example:
 
 === solr.SimpleTextCodecFactory
 
-This factory for Lucene's `SimpleTextCodec` produces a plain text human-readable index format.
+This factory for Lucene's {solr-javadocs}/solr-core/org/apache/solr/core/SimpleTextCodecFactory.html[`solr.SimpleTextCodecFactory`] produces a plain text human-readable index format.
 
-CAUTION: *FOR RECREATIONAL USE ONLY*.  This codec should never be used in production.  `SimpleTextCodec` is relatively slow and takes up a large amount of disk space.  Its use should be limited to educational and debugging purposes.
+CAUTION: *FOR RECREATIONAL USE ONLY*. This codec should never be used in production. `SimpleTextCodec` is relatively slow and takes up a large amount of disk space. Its use should be limited to educational and debugging purposes.
 
 Example: