Phantom DSL中是否有指定每个分区缓存的行数?我能做到:
.create.ifNotExists()。
with
(缓存eqs Cache.RowsOnly())
但我无法找到如何指定缓存条件,如:所有键+每个分区500行。
答案 0 :(得分:1)
table
.create.ifNotExists()
.with(
caching eqs Cache.RowsOnly().rows_per_partition(CacheStrategies.ALL)
)