The topic you referenced has the answer. If the field you are faceting
on is a string, then it needs to either be not analyzed or analyzed
with something like the KeywordAnalyzer which terms the term as a
single token. Can you gist the mapping you are using? In your example,
it appears that location is being analyzed and is indexed as two
tokens "Kansas" and "City", which is the default behavior. The facet
will treat the two tokens as unique terms.
--
Ivan
On Wed, Jan 11, 2012 at 10:01 AM, Royce royce.haynes@gmail.com wrote:
Hi,
I'm using facets to do filters on search results. One tag, for
example, is a city name "Kansas City." The facet interprets "Kansas
City" as two separate counts, "Kansas" and "City".How can I configure facets to recognize "Kansas City" as one tag?
Take care,
Royce