How to know affected rows in Cassandra(CQL)?
问题 There doesn't seem to be any direct way to know affected rows in cassandra for update, and delete statements. For example if I have a query like this: DELETE FROM xyztable WHERE PKEY IN (1,2,3,4,5,6); Now, of course, since I've passed 6 keys, it is obvious that 6 rows will be affected. But, like in RDBMS world, is there any way to know affected rows in update/delete statements in datastax-driver? I've read cassandra gives no feedback on write operations here. Except that I could not see any