What is the difference between common terms query vs match query with cutoff_frequency set

I was reading up on the match query and noticed that it has a
cutoff_frequency parameter, which seems to do pretty much what the common
terms query does.

  1. What is the difference between the common and match queries?
  2. When would I want to use common terms over match?
  3. Ultimately, would the direction be to have common terms query roll up
    into the match query (with any differences added to match)?

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/1bcf87e3-3b65-45bc-8578-dde77b10c37f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Bump

On Monday, May 12, 2014 4:22:51 PM UTC-4, Mike wrote:

I was reading up on the match query and noticed that it has a
cutoff_frequency parameter, which seems to do pretty much what the common
terms query does.

  1. What is the difference between the common and match queries?
  2. When would I want to use common terms over match?
  3. Ultimately, would the direction be to have common terms query roll
    up into the match query (with any differences added to match)?

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/cace77ef-9f36-4308-a3b3-2b99aaa17844%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

They should produce the same exact query (CommonTermsQuery). The only thing
I can think of that is different is the CommonTerms query provides more
options other than just the cutoff_frequency (i.e. low_freq_operator,
high_freq_operator, etc) which are not available in the Match query. I do
not know of any plans to "merge/rollup" the two so for now, they remain
separate.

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/46abca65-48ce-4a85-972f-069a2e7df30e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.