答案是cassandra乐观锁定,但问题描述了cassandra中存在乐观锁定(版本控制)。我的问题是如何在 Spring 开机?
nkoocmlb1#
cassandra spring数据中的轻量级事务通过insertoptions类或updateoptions支持—您可以通过相应的生成器(例如insertoptions.insertoptionsbuilder)创建它的示例,然后将它的示例传递给相应的操作 insert 或者 update .操作的结果是从writeresult类的示例获取的,该示例由返回 insert / update 通过调用.wasapplied函数。更详细的资料可以在文件中找到。
insert
update
1条答案
按热度按时间nkoocmlb1#
cassandra spring数据中的轻量级事务通过insertoptions类或updateoptions支持—您可以通过相应的生成器(例如insertoptions.insertoptionsbuilder)创建它的示例,然后将它的示例传递给相应的操作
insert
或者update
.操作的结果是从writeresult类的示例获取的,该示例由返回
insert
/update
通过调用.wasapplied函数。更详细的资料可以在文件中找到。