i have inserted a row into the table Table1 and Standard1 column family. And this works with the cassandra-cli
cassandra> get Table1.Standard1['1'] COLUMN_TIMESTAMP = 1246942866; COLUMN_VALUE = 24; COLUMN_KEY = age; COLUMN_TIMESTAMP = 1246943353; COLUMN_VALUE = Chris Goffinet; COLUMN_KEY = name; Statement processed. but if i try to get this data using the python client I get an empty list: >>> client.get_slice(tablename='Table1', key='1', columnParent='Standard1', start='0', finish='100', isAscending=True, offset=-1, count=1000) [ ] this is the output from cassandra DEBUG - weakreadlocal reading SliceFromReadCommand(table='Table1', key='1', columnFamily='Standard1', isAscending='true', limit='-1', count='1000') DEBUG - clearing also notice that the argument 'offset' in the python client is actually passed to cassandra as 'limit'. is there something im missing here? thanks
