Serializing even a large list into 1 column is not a bad thing necessairly. The thing is when you update that column, you have to rewrite the whole thing. If you expect lots of items and a frequent update it might be better to store each item in a column as stack says above.
Another question you can ask is "does my app retrieve this list as a unit always?". If so, and the update rate is not high, a serialized format may be the most efficient route. It all just depends on your app read/write patterns. Good luck! On Sep 22, 2009 10:24 AM, "stack" <st...@duboce.net> wrote: Would a family devoted to your list -- called 'list'! -- work for you? You could get individual members of the list by doing list:membername or get them all by getting all elements of the family, etc. St.Ack On Tue, Sep 22, 2009 at 9:57 AM, Keith Thomas <keith.tho...@gmail.com>wrote: > > I have a family which contains an array, or list, of values. I don't mind > whether it is an ar...