json类型在Cassandra数据模型中?

时间:2014-07-30 00:11:23

标签: cql3 cassandra-2.0 cqlengine

我想知道json中是否有column family数据类型:

我的表格将具有唯一的row key,列名称为“tweets_json”,列值为json内容。

如何在CQL/cassandra或使用python DriverCQLengine创建此类表格?

tweet_json = json.encode({
                "tweet_id" : tweet_id,
                "body" : tweet_body,
                "user_name" : this_user,
                "timestamp" : timestamp
            })

Basicall

1 个答案:

答案 0 :(得分:2)

只是有一个文本列?如果你不想在json上过滤,那应该没问题。如果你是,那么你需要将它存储为正确的列,而不是json。