I'm testing Amazon Cloudsearch
for my web application and i'm running into some strange issues.
I have the following domain indexes: name
, email
, id
.
For example, I have data such as: John Doe, [email protected], 1
When I search for jo
I get nothing. If I search for joh
I still get nothing, But if I search for john
then I get the above document as a hit. Why is it not getting when I put partial strings? I even put suggestors on name
and email
with fuzzy matching enabled. Is there something else i'm missing? I read the below on this:
http://docs.aws.amazon.com/cloudsearch/latest/developerguide/searching-text.html
http://docs.aws.amazon.com/cloudsearch/latest/developerguide/searching.html
http://docs.aws.amazon.com/cloudsearch/latest/developerguide/searching-compound-queries.html
I'm doing the searches using boto as well as with the form on AWS page.
q=jo* |jo
or if i say multiple value query string with sameq=jo*&q=|jo
– Decomposer