Re: How to Retrieve all the rows from a ColumnFamily

2010-09-27 Thread Lucas Nodine
Commented your questions below. HTH - Lucas Nodine On Mon, Sep 27, 2010 at 7:35 AM, sekhar kosuru wrote: > Hi Lucas, > > Thanks for the reply. > > Please clarify me if i am wrong, this kind of filtering will work on Key > values in ColumnFamily or any other column available in the ColumnFamily.

Re: How to Retrieve all the rows from a ColumnFamily

2010-09-27 Thread sekhar kosuru
Hi Lucas, Thanks for the reply. Please clarify me if i am wrong, this kind of filtering will work on Key values in ColumnFamily or any other column available in the ColumnFamily. One more thing is here we are restricting the out come for 100 records, if we are not doing also api is resticting fo

Re: How to Retrieve all the rows from a ColumnFamily

2010-09-27 Thread Lucas Nodine
Example code using C# below: Collections.Generic.List results; SlicePredicate predicate; ColumnParent cp; // Create Slice predicate = new SlicePredicate() { Slice_range = new SliceRange() { Start = _utf8.GetBytes(""), Finish = _utf8.GetBytes(""), Count = 100, Reversed = false

Re: How to Retrieve all the rows from a ColumnFamily

2010-09-27 Thread Benjamin Black
http://wiki.apache.org/cassandra/FAQ#iter_world On Sun, Sep 26, 2010 at 11:51 PM, sekhar kosuru wrote: > Hi > I am new to Cassandra Database. > I want to know how to Retrieve all the records from a column family, is this > is different in the clustered servers vs single servers. > Please suggest