I can't find a way to get columns by second or any other part of the column name, for example if i have
user_id:timestamp
How can i select that column by timestamp and completely ignore user_id?
This is the code i'm using now:
$slice = new ColumnSlice( array('user_id'), "", 1);
$row = $cf->get("key", $slice);
Thank you.