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/07 01:57:40 UTC

lucene-solr:branch_6x: Ref Guide: Remove place holders

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x d7fdbc48a -> 77ca26beb


Ref Guide: Remove place holders


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

Branch: refs/heads/branch_6x
Commit: 77ca26beb39d25448b671cacb209a42fe49d193f
Parents: d7fdbc4
Author: Joel Bernstein <jb...@apache.org>
Authored: Tue Jun 6 21:51:17 2017 -0400
Committer: Joel Bernstein <jb...@apache.org>
Committed: Tue Jun 6 21:57:35 2017 -0400

----------------------------------------------------------------------
 solr/solr-ref-guide/src/stream-decorators.adoc |  9 -------
 solr/solr-ref-guide/src/stream-evaluators.adoc | 26 ---------------------
 2 files changed, 35 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/77ca26be/solr/solr-ref-guide/src/stream-decorators.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-decorators.adoc b/solr/solr-ref-guide/src/stream-decorators.adoc
index cbbc9ef..69472ba 100644
--- a/solr/solr-ref-guide/src/stream-decorators.adoc
+++ b/solr/solr-ref-guide/src/stream-decorators.adoc
@@ -20,12 +20,6 @@
 // specific language governing permissions and limitations
 // under the License.
 
-== cartesianProduct
-//TODO
-
-== cell
-//TODO
-
 == classify
 
 The `classify` function classifies tuples using a logistic regression text classification model. It was designed specifically to work with models trained using the <<stream-sources.adoc#train,train function>>. The `classify` function uses the <<stream-sources.adoc#model,model function>> to retrieve a stored model and then scores a stream of tuples using the model. The tuples read by the classifier must contain a text field that can be used for classification. The classify function uses a Lucene analyzer to extract the features from the text so the model can be applied. By default the `classify` function looks for the analyzer using the name of text field in the tuple. If the Solr schema on the worker node does not contain this field, the analyzer can be looked up in another field by specifying the `analyzerField` parameter.
@@ -517,9 +511,6 @@ merge(
       on="fieldA asc")
 ----
 
-== list
-// TODO
-
 == null
 
 The null expression is a useful utility function for understanding bottlenecks when performing parallel relational algebra (joins, intersections, rollups etc.). The null function reads all the tuples from an underlying stream and returns a single tuple with the count and processing time. Because the null stream adds minimal overhead of it's own, it can be used to isolate the performance of Solr's /export handler. If the /export handlers performance is not the bottleneck, then the bottleneck is likely occurring in the workers where the stream decorators are running.

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/77ca26be/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 3927b8f..2c2a2ae 100644
--- a/solr/solr-ref-guide/src/stream-evaluators.adoc
+++ b/solr/solr-ref-guide/src/stream-evaluators.adoc
@@ -412,30 +412,6 @@ or(and(fieldA,fieldB),fieldC) // (fieldA && fieldB) || fieldC
 or(fieldA,fieldB,fieldC,and(fieldD,fieldE),fieldF)
 ----
 
-== analyze
-//TODO
-
-== second
-//TODO
-
-== minute
-//TODO
-
-== hour
-//TODO
-
-== day
-//TODO
-
-== month
-//TODO
-
-== year
-//TODO
-
-== convert
-//TODO
-
 == raw
 
 The `raw` function will return whatever raw value is the parameter. This is useful for cases where you want to use a string as part of another evaluator.
@@ -457,5 +433,3 @@ raw(true) // "true" (note: this returns the string "true" and not the boolean tr
 eq(raw(fieldA), fieldA) // true if the value of fieldA equals the string "fieldA"
 ----
 
-== UUID
-//TODO