Info info = new Info();
info.setColumnType(type);
info.setRowKeyType(keyType);
//should we cache this and just look it up each time or is KISS fine for now....
ColumnFamily cf = null;
switch(type) {
case ANY_EXCEPT_COMPOSITE:
cf = new ColumnFamily(colFamily, BytesArraySerializer.get(), BytesArraySerializer.get());
break;
case COMPOSITE_DECIMALPREFIX:
case COMPOSITE_INTEGERPREFIX:
case COMPOSITE_STRINGPREFIX:
com.netflix.astyanax.serializers.