Match filter vs terms filter?

Is there any performance differences between these queries? They return
same results for same query and both cache query results.

{
"filter": {
"query": {
"match_phrase": {
"name": "new york"
}
}
}
}

"filter" : { "terms" : { "name" : ["new", "york"]} }

BTW, Is there any way to support double quotes feature using a custom
analyzer in match query?

--
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.
For more options, visit https://groups.google.com/groups/opt_out.