I want to store a Set in an HBase row, the plan for now is to simply store the String as the column name and a dummy 0x01 value as the column value...
For example lets say I want to store users and a list of books they read, so I'd have the userId as the row key, and for every book that the user has read I'd store the book name as the column name and the string "1" as the value...
Is there a better way to design this?