I am looking at Amazon CloudSearch, and am just concerned about having multiple values per column, and if it would be considered as an individual facet by the CloudSearch. What I mean is, if I have a book (1 row) and it has multiple authors, but only one author
field, how can the faceted search return each individual author as a separate facet? It wouldn't be that practical to have to set-up a hard-coded set of author fields (ie.. author1
,author2
,author3
) so I'm wondering if it's something built in?
I don't see it being supported, but then again I don't know everything. The way I see it it can accept a CSV value of some sort, or XML?
An example of what I mean is like if I had this data set stored on CloudSearch:
title | author
I am a book | Bob Jones, Mike Miller
But these would be the facets returned:
author
-Bob Jones
-Mike Miller
Any way to achieve something like this?