ReactiveCassandraBatchTemplate的delete方法没有WriteOptions参数

时间:2018-12-18 21:05:19

标签: cassandra-2.1 spring-data-cassandra

我正在尝试使用ReactiveCassandraBatchOperations实现批处理(我使用ReactiveCassandraBatchTemplate实现)。 我需要将WriteOptions批量添加到每个语句中。 我看到有合适的插入方法:

public ReactiveCassandraBatchOperations insert(Iterable<?> entities, WriteOptions options)

但是我不知道如何将WriteOptions添加到 delete 语句中,因为ReactiveCassandraBatchTemplate.delete方法没有WriteOptions参数。 我很好奇为什么实现不允许为delete方法设置WriteOptions。可以这样做吗?

BEGIN BATCH
      DELETE FROM my_keyspace.names USING TIMESTAMP 1545144976160 WHERE name ='A';
APPLY BATCH;

0 个答案:

没有答案