A ColumnPath can contain a super column, so you should be fine inserting a
super column family (in fact I do that). Quoting cassandra.thrift:
struct ColumnPath {
3: required string column_family,
4: optional binary super_column,
5: optional binary column,
}
- Original Message ---
For batch_insert, I think you could use batch_mutate instead.
For multi_get, I think you could use multiget_slice instead.
Boris
在 ,魏金仙 寫道:
insert(key, column_path, column, consistency_level) can only insert a
standard column.Is batch_mutate the only API to insert a super column?
and also