Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "FAQ" page has been changed by JonathanEllis. http://wiki.apache.org/cassandra/FAQ?action=diff&rev1=101&rev2=102 -------------------------------------------------- You're probably using the RandomPartitioner. This is the default because it avoids hotspots, but it means your rows are ordered by the md5 of the row key rather than lexicographically by the raw key bytes. - You '''can''' start out with a start key and end key of '' (empty) and use the row count argument instead, if + You '''can''' start out with a start key and end key of [empty] and use the row count argument instead, if your goal is paging the rows. To get the next page, start from the last key you got in the previous page.