如何在cassandra中使用hector执行条件行计数,类似于我们在RDBMS中使用hector thrift API执行的操作:
Select count(*) from table_name where column_name = column_value
发布于 2013-05-08 01:18:35
这种类型的count查询语句在cassandra中是不可能的。要实现同样的效果,您可以使用Cassandra Counter Family
https://stackoverflow.com/questions/16424005
复制相似问题