-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OAK-11129 Improve Lucene documentation #1720
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few minor comments.
if the node is part of the index, if the node type (or mixin) matches, | ||
if the mime type property is set, and if the mime type is indexed | ||
(see the Tika configuration). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would be more clear as a bullet list. Do all of the conditions have to apply for a binary property to be indexed? My understanding is that yes. So it would more clear to say this explicitly, like: if all of the conditions below are true:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
|
||
propertyIndex | ||
: Whether the index for this property is used for equality conditions, ordering, | ||
and is not null conditions. | ||
and is not null conditions. Example query: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Took me a while to understand what is meant by: and is not null conditions.
I guess it should be read as "and is-not-null
conditions", right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I'll quote is not null
(that is the syntax).
|
||
notNullCheckEnabled | ||
: Since 1.1.8 | ||
: If the property is checked for _is not null_ then this should be set to true. | ||
: If the property is checked for `is not null` then this should be set to true. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's more clear, using quotes for is not null
.
No description provided.