You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by th...@apache.org on 2019/01/18 08:00:29 UTC

svn commit: r1851605 - /jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md

Author: thomasm
Date: Fri Jan 18 08:00:28 2019
New Revision: 1851605

URL: http://svn.apache.org/viewvc?rev=1851605&view=rev
Log:
OAK-301: Document Oak

Modified:
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md?rev=1851605&r1=1851604&r2=1851605&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md Fri Jan 18 08:00:28 2019
@@ -277,6 +277,9 @@ Queries that exceed one of the limits ar
 
 "LimitReads" applies to the number of nodes read by a query.
 It applies whether or not an index is used.
+The exact number of nodes read for a query depends on many factors,
+mainly the query, the query plan used, the index configuration, access rights, and nodes in the repository.
+The result size of a query is often much smaller than the number of nodes read.
 As an example, if a query has just two conditions, as in `a=1 and b=2`, and if there is an index on `a`,
 then all nodes with `a=1` need to be read while traversing the result.
 If more nodes are read than the set limit, then an exception is thrown.
@@ -557,7 +560,7 @@ for evaluating the query. So, a query li
 can only be resolved by an index which is indexing all `nt:unstructured` nodes. Following query is
 is what should be used to get facets from nodes which have existing faceted proeprty:
 
-    SELECT [rep:facet(jcr:title)] FROM [nt:unstructured] WHERE [jcr:title] IS NOT NULL 
+    SELECT [rep:facet(jcr:title)] FROM [nt:unstructured] WHERE [jcr:title] IS NOT NULL
 
 ### XPath to SQL-2 Transformation