Hello,
I was able to do this using query dsl.
post my_index/_close
put my_index/_settings
{
"settings": {
"index": {
"similarity": {
"default": {
"type": "classic"
}
}
}
}
}
post my_index/_open
But i'm having problem converting this to Nest. If you could give me a link related to this/or if you did the same, your inputs will be greatly appreciated.
Thank you!