Hi ,
If i run term facet on a particular field , i am getting the result of
terms after splitting the filed WRT space.
For eg :
If the fields are - "Mr King","King Kong","Mr CEO","CEO OF" , "Mr King"
After running term facet on this
{
"facets": {
"Categories": {
"terms": {
"field": "Name",
"size": 10
}
}
}
}
Am getting the result as
"Mr" - 3
"King" - 3
Kong - 1
CEO - 2
OF -1
What i expected was
"Mr King" - 2
"King Kong"-1
"Mr CEO" - 1
And so on...
Is this the right behavior.
If it is , what is the other alternative to the desired output.
Thanks
Vineeth