tags:

views:

58

answers:

1

Hi,

How can I make complex queries in Cassandra?

As example, I have a set of objects with id, name and others properties, and I want all Ids with the name starting with some string.

Is that possible?

Thanks,

+1  A: 

yes, thats plausible. use range queries and order preserving partitioner. (read bens excellent slides about index and range queries)

Schildmeijer