Hi all, I'm planning to save (and retrieve) potentially very long lists of values, each list relating to one row in my HBase table. Have any of you tried something similar with HBase?
Possible approaches that come to mind are: - Insert a new row for each list item, duplicate the rest - Create a column family for the list and insert each list item into a new column in this family - Write the whole list into one cell using custom formatting - Use several tables + perform some kind of join If you have any clues or experiences, I'd love to hear them. micha
