Retreiving column by names Vs by range, which is more performant ?

2011-11-03 Thread Ertio Lew
Retrieving columns by names vs by range which is more performant , when you
have the options to do both ?


Re: Retreiving column by names Vs by range, which is more performant ?

2011-11-03 Thread Brandon Williams
On Thu, Nov 3, 2011 at 2:05 PM, Ertio Lew ertio...@gmail.com wrote:
 Retrieving columns by names vs by range which is more performant , when you
 have the options to do both ?

Assuming the columns have never been overwritten, range has a small advantage.

However, in the face of frequently updated (overwritten) columns,
names will tear it up with
https://issues.apache.org/jira/browse/CASSANDRA-2498

-Brandon