GET articles/_search
{
"query": {
"more_like_this" : {
"fields" : ["title"],
"like" : " Creating the model Apache",
"min_term_freq" : 1,
"max_query_terms" : 12
}
}
}
In articles it exists the exact title " Creating the model Apache" and the query fails to find anything.
Any idea?