I know that solr has functions like termfreq and that works fine for single
words.
How can I do the same count but for a phrase?    When solr does a full text
search with a phrase, does it actually search for the phrase or does it
break it down into single words? If it is broken down into single words, for
example "hello world" is broken down into  "hello" and "world", can I just
do sum(termfreq(column,"hello"),termfreq(column,"world"))  to get the same
ranking order that solr produces?

Reply via email to