Question
If I am using a match token class, and I add that attribute in ingnoreInToken, did my match rules still use the custom match token comparator for matching? Does the ignoreInToken only affects the candidate selection process, and does not affect the actual matching?
Answer
IgnoreInToken only affects tokenization + intersection of those attributes. It has no impact on the comparison stage of the match process
It then runs the comparison process which leverages the comparators for each rule. It runs these against every entity that shares 1 or more tokens with the triggering entity.
Comments
Please sign in to leave a comment.