Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有使用phpcassa在cassandra中简单增加/减少整数值的方法?也许是 CounterColumn,但我没有找到任何关于如何使用它的信息。
基本上,我只想增加一些动作计数器,任何提示或代码示例?
你见过这个例子吗。ColumnFamily::add() 是增加计数器的最简单方法
$count_cf->add("key1", "col1", 10);