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:56:54 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6_6 da03b1e90 -> 15bcca142


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/15bcca14
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/15bcca14
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/15bcca14

Branch: refs/heads/branch_6_6
Commit: 15bcca142edad6d97abf519efbf91dba5c5ed09a
Parents: da03b1e
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:55:50 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/15bcca14/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 1594833..abd7c10 100644
--- a/solr/solr-ref-guide/src/stream-decorators.adoc
+++ b/solr/solr-ref-guide/src/stream-decorators.adoc
@@ -20,10 +20,6 @@
 // specific language governing permissions and limitations
 // under the License.
 
-== cartesianProduct
-//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.
@@ -534,9 +530,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/15bcca14/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