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 2019/06/10 01:14:08 UTC

[lucene-solr] branch SOLR-13105-visual updated: SOLR-13105: Change copy

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

jbernste pushed a commit to branch SOLR-13105-visual
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/SOLR-13105-visual by this push:
     new a2bf1d9  SOLR-13105: Change copy
a2bf1d9 is described below

commit a2bf1d9bf21114b5352fc2e7c46f2dc9078d4636
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Sun Jun 9 21:14:01 2019 -0400

    SOLR-13105: Change copy
---
 solr/solr-ref-guide/src/math-start.adoc | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/solr/solr-ref-guide/src/math-start.adoc b/solr/solr-ref-guide/src/math-start.adoc
index c080d31..d0cfeaf 100644
--- a/solr/solr-ref-guide/src/math-start.adoc
+++ b/solr/solr-ref-guide/src/math-start.adoc
@@ -19,12 +19,10 @@
 
 == Language Notes
 
-*Streaming Expressions* and *Math Expressions* are an expression language that runs
-inside Solr Cloud. The language consists of function expressions that are designed
-to be nested or *composed*. Streaming Expressions are purely functional in that they don't
-have any constructs but functions. Math Expressions does have variables, so it's not
-purely functional. But Math Expression variables are really just a special kind of
-named parameter of the *let* expression.
+*Streaming Expressions* and *Math Expressions* are expression languages that runs
+inside Solr Cloud. The languages consists of function expressions that are designed
+to be nested or *composed*.  Streaming Expressions and Math Expressions can be combined to *search, sort,
+sample, aggregate, transform, analyse* and *visualize* data in Solr Cloud collections.
 
 *Streaming Expressions* all return streams of data. This allows Streaming Expressions to be
 composed in ways that form a pipeline. A *Stream Source*, such as *search*, initiates
@@ -35,8 +33,8 @@ the stream of Tuples.
 arrays and matrices. Many of the Math Expression are designed to work on arrays and matrices
 to perform *statistical* and mathematical operations.
 
-Streaming Expressions and Math Expressions can be combined to *search, sort,
-sample, aggregate, transform, analyse* and *visualize* data in Solr Cloud collections.
+
+
 
 == Executing Streaming Expressions and Math Expressions