Charlie Andrews
Charlie Andrews

Reputation: 1477

using OR in pycassa index expressions

Is there a way to express an OR operator using pycassa's crerate_index_clause() method? I know I could create two clauses and compare the results, but would love a solution to create only one.

Upvotes: 2

Views: 39

Answers (1)

Big Mclargehuge
Big Mclargehuge

Reputation: 26

Cassandra doesn't have support for disjunction at this time.

See -> Using operator 'or' in Cassandra IndexExpression

Upvotes: 1

Related Questions