You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2017/06/08 19:31:41 UTC

lucene-solr:branch_6x: Ref Guide: Edit stream evaluators description

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x afe14bf75 -> 76e2c7002


Ref Guide: Edit stream evaluators description


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

Branch: refs/heads/branch_6x
Commit: 76e2c700216e4809ff4dc0b237c8f4a12b63d1e8
Parents: afe14bf
Author: Joel Bernstein <jb...@apache.org>
Authored: Thu Jun 8 15:28:42 2017 -0400
Committer: Joel Bernstein <jb...@apache.org>
Committed: Thu Jun 8 15:31:28 2017 -0400

----------------------------------------------------------------------
 solr/solr-ref-guide/src/stream-evaluators.adoc | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/76e2c700/solr/solr-ref-guide/src/stream-evaluators.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-evaluators.adoc b/solr/solr-ref-guide/src/stream-evaluators.adoc
index 83fa8a8..8571b0e 100644
--- a/solr/solr-ref-guide/src/stream-evaluators.adoc
+++ b/solr/solr-ref-guide/src/stream-evaluators.adoc
@@ -21,14 +21,13 @@
 // under the License.
 
 
-Stream evaluators are different the stream sources or stream decorators. Both
-streaming sources and stream decorators return streams of tuples.
-
-Stream evaluators are more like traditional functions that evaluates its parameters and
+Stream evaluators are different then stream sources or stream decorators. Both
+stream sources and stream decorators return streams of tuples. Stream evaluators are more like
+a traditional function that evaluates its parameters and
 returns an result. That result can be a single value, array, map or other structure.
 
-Stream evaluators can be nested to so that the output of evaluator becomes the input
-for another evaluatore.
+Stream evaluators can be nested so that the output of an evaluator becomes the input
+for another evaluator.
 
 Stream evaluators can be called in different contexts. For example a stream evaluator
 can be called on its own or it can be called within the context of a streaming expression.
@@ -43,7 +42,7 @@ emitted by the analyzer. The `analyze` function can be called on its own or with
 === analyze Parameters
 
 * `Field Name` | `Raw Text`: Either the field in a tuple or the raw text to be analyzed.
-* `Analyzer field name`: The field name of the analyzer to use to analyze the text.
+* `Analyzer Field Name`: The field name of the analyzer to use to analyze the text.
 
 === analyze Syntax