Range Queries in Cassandra (CQL 3.0)
One main part of Cassandra that I don't fully understand is its range queries. I know that Cassandra emphasizes distributed environment and focuses on performance, but probably because of that, it currently only support several types of ranges queries that it can finish efficiently, and what I would like to know is that: which types of range queries are supported by Cassandra. As far as I know, Cassandra supports the following range queries: 1: Range Queries on Primary key with keyword TOKEN , for example: CREATE TABLE only_int (int_key int PRIMARY KEY); ... select * from only_int where token