4

什么是 CQL 等效项:INCR MyCounter['123']['test'] BY 1

4

1 回答 1

6

您可以在此处找到 CQL 语法参考:Cassandra 查询语言 (CQL) v2.0。在 CQL 中增加一个计数器:

update MyCounter set test = test + 1 where KEY = '123';
于 2012-05-17T16:47:23.580 回答