How do we reindex an index such that queries having a symbol and not having symbol return same results


query: {

    match: {

        "key": "yee-haw"

    }

}

# returns 0

query: {

    match: {

        "key": "yeehaw"

    }

}

# returns 2

Reindex such that both yee-haw and yeehaw return same results with same scoring

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.