Does cassandra support an atomic get and set for a counter? I.e.
create table c(id int, value counter, primary key (id));
update update c set value=value+1 where id=1;
ok, now my counter is ready. But I want to be able to read a unique value from several servers, each server getting a distinct value, like
select value from c where id=1;