Description
The let and get Streaming Expressions allows the tuples in a stream to be assigned to a variable so it can be used more then once during an expression.
This builds on the list and cell expressions (SOLR-10551)
Here is the sample syntax:
let(cell(a, expr), cell(b, expr), list(cell(a, get(a)), cell(b, get(b)), cell(correlation, correlate(get(a), fielda, get(b), fieldb)))
In the example above the let expression is saving the contents of two cell expressions (a, b). The get expression is retrieving the tuples and using them later in the expression.
So for example two facet expressions could be stored in the let, and then displayed and correlated later in the expression.
Attachments
Attachments
Issue Links
- is related to
-
SOLR-10651 Streaming Expressions statistical functions library
- Closed