Basically running the following:
SELECT *
FROM document
WHERE contains(cachedText, 'after')
returns 0 records, same with any search term with the word after
in it.
Searching for:
SELECT *
FROM document
WHERE cachedText like '%after%'
returns about 200k records in my dataset. Just wondering if there is any reason for this?