I want to access frequency of a phraze combined from multiple words e.g. 
"green energy"

I can access tf of "green" and "energy", example:

"function_score":
{
    "filter" : {
        "terms" : { "content" : ["energy","green"]}
    },
    "script_score": {
        "script": "_index['content']['energy'].tf() + 
_index['content']['green'].tf()",
        "lang":"groovy"
    }
}

This works fine. However, how can I find the frequency of a term "green 
energy" as

_index['content']['green energy'].tf() does not work

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/2e4388a4-72d6-4933-9686-304dea0727f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to