I have 2 documents in my db:
ID | FIELD | VALUE
---------------------------
1 | title | something else
2 | title | something blah
Query 1: If i run the Lucene query: title:"something else"
- It finds document with ID 1.
Query 2: If i run the Lucene query: title:"something els"
- It does not find any documents.
Query 3: If i run the Lucene query: title:"something els*"
- It does not find any documents.
What could be going wrong?
I would expect to see Query 2 and 3 return document with ID 1
Notes:
title: something else
is returned from the content searcher that Umbraco shows.