Ababneh A
Ababneh A

Reputation: 1134

Filtering columns in Cassandra

I am new to Cassandra.

Lets say I have 1,000,000 columns. I would like to return only columns that have the string 'test' in the column name.

Is it possible with Cassandra/Pycassa?

Upvotes: 1

Views: 212

Answers (1)

Chris Gerken
Chris Gerken

Reputation: 16392

You can only filter columns whose names start with "test". Otherwise you'll have to do the filtering in your own code.

Upvotes: 2

Related Questions