Perfect! Thanks for the response Sylvain!
On Friday, March 1, 2013, Sylvain Lebresne wrote:
> On Fri, Mar 1, 2013 at 5:16 PM, Adam Venturella
>
> > wrote:
>
>> My ColumnFamily is defined as follows:
>>
>>
>> CREATE TABLE UserProfileHistory(
>> username text,
>> timestamp bigint, -- mill
On Fri, Mar 1, 2013 at 5:16 PM, Adam Venturella wrote:
> My ColumnFamily is defined as follows:
>
>
> CREATE TABLE UserProfileHistory(
> username text,
> timestamp bigint, -- millis since epoch
> data text, -- JSON
> PRIMARY KEY (username, timestamp)
> ) WITH CLUSTERING ORDER BY (t
My ColumnFamily is defined as follows:
CREATE TABLE UserProfileHistory(
username text,
timestamp bigint, -- millis since epoch
data text, -- JSON
PRIMARY KEY (username, timestamp)
) WITH CLUSTERING ORDER BY (timestamp DESC);
Each insert on the username adds to the wide row. The