Hi, If I have a one-to-many relationship in a SQL database (an author might have written many books), and I want to denormalize it for writing in HBase, I'll have a table with the Author as the row key and a *list* of books as values.
Now my question is how do I create a *list* such that I could just append to it using the HBase Java API *Append* instead of doing a read-modify-insert on a Java List object containing all the books. Thanks, Arun
