Hi,
I am trying to retrieve the row_keys in a column_family witht he following
code.

        $rows = $column_family->get_range($key_start='R17889000',
$key_finish='R17893999', $row_count=10000000);
        $count = 0;
        foreach($rows as $rows) {
        echo $count.'<br/>';
        $count += 1;

        print_r($rows);
        echo '<br/>';
        }


there are 5000 records in the datatbase. But only 526 are getting retrieved.
am i missing out something here???
can anyone help????

Reply via email to