I know i can reverse the column order like:
$rows = $test->get_range("", "", 10, NULL, "", "", true);
But keys are in db like 1, 2, 3, 4 I want to get the latest 10 keys, and then do like reverse paging. So i basically want first in first out. What would be the best method?
Sure I could get all the keys out of cassandra and then reverse them by php but there must be something more elegant.