如何设置每个分区缓存的行数

时间:2017-02-21 20:45:09

标签: scala cassandra phantom-dsl

Phantom DSL中是否有指定每个分区缓存的行数?我能做到:

  

.create.ifNotExists()。with(缓存eqs Cache.RowsOnly())

但我无法找到如何指定缓存条件,如:所有键+每个分区500行。

1 个答案:

答案 0 :(得分:1)

table
  .create.ifNotExists()
  .with(
    caching eqs Cache.RowsOnly().rows_per_partition(CacheStrategies.ALL)
  )