You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2018/01/24 10:57:27 UTC

[2/2] lucene-solr:branch_7x: SOLR-11894: Ref guide: remove 'side' param from Edge N-Gram Tokenizer documentation

SOLR-11894: Ref guide: remove 'side' param from Edge N-Gram Tokenizer documentation


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

Branch: refs/heads/branch_7x
Commit: 7245de93af90e31842b36c59b70d83ddd1d5694d
Parents: 059e23d
Author: Steve Rowe <sa...@apache.org>
Authored: Wed Jan 24 05:56:47 2018 -0500
Committer: Steve Rowe <sa...@apache.org>
Committed: Wed Jan 24 05:57:14 2018 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/tokenizers.adoc | 17 -----------------
 1 file changed, 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/7245de93/solr/solr-ref-guide/src/tokenizers.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/tokenizers.adoc b/solr/solr-ref-guide/src/tokenizers.adoc
index c2fcf60..a351499 100644
--- a/solr/solr-ref-guide/src/tokenizers.adoc
+++ b/solr/solr-ref-guide/src/tokenizers.adoc
@@ -223,8 +223,6 @@ Reads the field text and generates edge n-gram tokens of sizes in the given rang
 
 `maxGramSize`: (integer, default is 1) The maximum n-gram size, must be >= `minGramSize`.
 
-`side`: ("front" or "back", default is "front") Whether to compute the n-grams from the beginning (front) of the text or from the end (back).
-
 *Example:*
 
 Default behavior (min and max default to 1):
@@ -255,21 +253,6 @@ Edge n-gram range of 2 to 5
 
 **Out:**"ba", "bab", "baba", "babal"
 
-*Example:*
-
-Edge n-gram range of 2 to 5, from the back side:
-
-[source,xml]
-----
-<analyzer>
-  <tokenizer class="solr.EdgeNGramTokenizerFactory" minGramSize="2" maxGramSize="5" side="back"/>
-</analyzer>
-----
-
-*In:* "babaloo"
-
-*Out:* "oo", "loo", "aloo", "baloo"
-
 == ICU Tokenizer
 
 This tokenizer processes multilingual text and tokenizes it appropriately based on its script attribute.