If you want to learn more on tokenization:
so for example, if you let the default, word
, and create a url
property, this is what happens when you have a google.com
value for your property
WITH WORD TOKENIZATION
google.com becomes 2 tokens: google
and com
now when you search for property url
equal to google.com
you will NOT find that object.
WITH FIELD TOKENIZATION
google.com becomes 1 token google.com
now, when you search for property url
equal to google.com
, you will find that object