Spring Data Cassandra - 检索受影响的行

时间:2016-06-14 17:28:58

标签: java spring cassandra spring-data-cassandra cassandra-jdbc

是否可以在Update Statement中获取受影响的行?

public void removeCountry(String id,int version) throws VersionException {
    log.debug("Update row"+id);
    try {
        Update update = QueryBuilder.update("country");
        update.setConsistencyLevel(ConsistencyLevel.ONE);
        update.with(QueryBuilder.set("destroyed", true));
        update.where(QueryBuilder.eq("id",id));
        update.where(QueryBuilder.eq("version",version));
        cassandraOperations.execute(update);
        //How to I know if the row was updated
        int rows = 0;//complete
        if (rows==0) throw new VersionException("Row does not been updated yet);
    } catch (Exception e) {
        log.error(e.getMessage(),e);
    }
}

我是Cassandra的新手,所以我不知道我是否可以像JDBC操作那样做。

1 个答案:

答案 0 :(得分:1)

正如我所怀疑的那样,鉴于Cassandra的分布式性质具有不同程度的一致性,简短的答案是否定的。

其他人之前在SO上发布了类似的问题,例如......

How to know affected rows in Cassandra(CQL)?