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!