Home
last modified time | relevance | path

Searched refs:rowCache (Results 1 – 5 of 5) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DDBOptionsInterface.java1332 T setRowCache(final Cache rowCache); in setRowCache() argument
1341 Cache rowCache(); in rowCache() method
DDBOptions.java1021 public DBOptions setRowCache(final Cache rowCache) { in setRowCache() argument
1023 setRowCache(nativeHandle_, rowCache.nativeHandle_); in setRowCache()
1024 this.rowCache_ = rowCache; in setRowCache()
1029 public Cache rowCache() { in rowCache() method in DBOptions
DOptions.java1067 public Options setRowCache(final Cache rowCache) { in setRowCache() argument
1069 setRowCache(nativeHandle_, rowCache.nativeHandle_); in setRowCache()
1070 this.rowCache_ = rowCache; in setRowCache()
1075 public Cache rowCache() { in rowCache() method in Options
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DDBOptionsTest.java650 public void rowCache() { in rowCache() method in DBOptionsTest
652 assertThat(opt.rowCache()).isNull(); in rowCache()
656 assertThat(opt.rowCache()).isEqualTo(lruCache); in rowCache()
661 assertThat(opt.rowCache()).isEqualTo(clockCache); in rowCache()
DOptionsTest.java869 public void rowCache() { in rowCache() method in OptionsTest
871 assertThat(opt.rowCache()).isNull(); in rowCache()
875 assertThat(opt.rowCache()).isEqualTo(lruCache); in rowCache()
880 assertThat(opt.rowCache()).isEqualTo(clockCache); in rowCache()