Is there any way to get data from cassandra through phpcassa
using a clauses?
I need to select all rows where sum<10
. For example the function in phpcassa get_range()
selects only rows which equals certain values.
Is there any way to get data from cassandra through phpcassa
using a clauses?
I need to select all rows where sum<10
. For example the function in phpcassa get_range()
selects only rows which equals certain values.
Copyright © 2021 Jogjafile Inc.
Normally with PHPCassa, you would use indexes:
As per http://thobbs.github.com/phpcassa/tutorial.html // slightly enhanced:
With your scenario, you cannot simply have a single index expression with sum<10 ... You must have the first index expression with an EQ operator and subsequent index expressions with other Operators.