Hi all,
I am trying out different methods of highlighting. As i can see "fvh" is taking more than 10 times as of unified.
The query is :
{"from" : 0, "size" : 1,"_source": {"includes":["TITLE"]
}, "query": {
"bool": {"should": [{
"query_string": {
"query":"\"pratik\"",
"fields":[],
"boost":"50"
}
}, {
"multi_match": {
"query":"pratik",
"type":"phrase",
"boost":"10",
"slop":"2",
"fields":[]
}},{
"multi_match": {
"query":"pratik",
"fields":[]
}},{
"multi_match": {
"query":"pratik",
"fuzziness":"AUTO",
"fields":[]
}}],"minimum_should_match":1,"filter": [ { "terms": { "ID.keyword" : ["a12d"]} } ]}}, "highlight": {
"type" : "fvh",
"fields": {
"*": {}
}
}}
fvh takes around 140938ms and unified takes 1283ms. How do I reduce the time taken by fvh? Is unified being deprecated ?