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 2020/12/17 08:01:49 UTC

svn commit: r1884541 - /jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/lucene.md

Author: thomasm
Date: Thu Dec 17 08:01:49 2020
New Revision: 1884541

URL: http://svn.apache.org/viewvc?rev=1884541&view=rev
Log:
OAK-8910 Improve OAK Lucene Index Documentation

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

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/lucene.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/lucene.md?rev=1884541&r1=1884540&r2=1884541&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/lucene.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/lucene.md Thu Dec 17 08:01:49 2020
@@ -427,10 +427,11 @@ ordered
   would cause indexing to fail.
 
 type
-: JCR Property type. Can be one of `Date`, `Boolean`, `Double` , `String` or `Long`. Mostly
-  inferred from the indexed value. However in some cases where same property
+: JCR Property type. Can be one of `Date`, `Boolean`, `Double` , `String`, `Long`, or `Binary`. 
+  Mostly inferred from the indexed value. However in some cases where same property
   type is not used consistently across various nodes then it would recommended
-   to specify the type explicitly.
+  to specify the type explicitly.
+  A binary is only indexed if there is an associated property `jcr:mimeType`.
 
 propertyIndex
 : Whether the index for this property is used for equality conditions, ordering,
@@ -1049,7 +1050,7 @@ the config file via `tika/config.xml` no
 
 #### <a name="mime-type-usage"></a>Mime type usage
 
-A binary would only be index if there is an associated property `jcr:mimeType` defined
+A binary is only indexed if there is an associated property `jcr:mimeType` defined
 and that is supported by Tika. By default indexer uses [TypeDetector][OAK-2895]
 instead of default `DefaultDetector` which relies on the `jcr:mimeType` to pick up the
 right parser.