Query Against Minhash Field

I have been following this tutorial to create minhash signature.

However, it is unclear to me how to perform searching using minhash properly. I have attempted the following query, which I quickly learned that it is very slow.

query = {
        "match": {
          "content.hash": {
            "query": "some text...."
          }
        }
      }

Any suggestions are greatly appreciated. Thank you!

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