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

[2/3] lucene-solr:branch_6x: Ref Guide: escape brackets so they don't come out as arrows

Ref Guide: escape brackets so they don't come out as arrows


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

Branch: refs/heads/branch_6x
Commit: 66301dc6ea10d1dd1700066e1fd1877578b1f31c
Parents: 01a02eb
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Jun 9 12:04:30 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Jun 9 12:08:40 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/the-dismax-query-parser.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/66301dc6/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/the-dismax-query-parser.adoc b/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
index 9df3102..bc650a5 100644
--- a/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
@@ -102,7 +102,7 @@ The table below explains the various ways that mm values can be specified.
 |Percentage |75% |Sets the minimum number of matching clauses to this percentage of the total number of optional clauses. The number computed from the percentage is rounded down and used as the minimum.
 |Negative percentage |-25% |Indicates that this percent of the total number of optional clauses can be missing. The number computed from the percentage is rounded down, before being subtracted from the total to determine the minimum number.
 |An expression beginning with a positive integer followed by a > or < sign and another value |3<90% |Defines a conditional expression indicating that if the number of optional clauses is equal to (or less than) the integer, they are all required, but if it's greater than the integer, the specification applies. In this example: if there are 1 to 3 clauses they are all required, but for 4 or more clauses only 90% are required.
-|Multiple conditional expressions involving > or < signs |2<-25% 9<-3 |Defines multiple conditions, each one being valid only for numbers greater than the one before it. In the example at left, if there are 1 or 2 clauses, then both are required. If there are 3-9 clauses all but 25% are required. If there are more then 9 clauses, all but three are required.
+|Multiple conditional expressions involving > or < signs |2\<-25% 9\<-3 |Defines multiple conditions, each one being valid only for numbers greater than the one before it. In the example at left, if there are 1 or 2 clauses, then both are required. If there are 3-9 clauses all but 25% are required. If there are more then 9 clauses, all but three are required.
 |===
 
 When specifying `mm` values, keep in mind the following: