Home
last modified time | relevance | path

Searched refs:bbt_opts (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/examples/
Doptions_file_example.cc49 BlockBasedTableOptions bbt_opts; in main() local
50 bbt_opts.block_size = 32 * 1024; in main()
51 bbt_opts.block_cache = cache; in main()
56 cf_descs[0].options.table_factory.reset(NewBlockBasedTableFactory(bbt_opts)); in main()
58 cf_descs[1].options.table_factory.reset(NewBlockBasedTableFactory(bbt_opts)); in main()
92 assert(loaded_bbt_opt->block_size == bbt_opts.block_size); in main()
/rocksdb-6.9/utilities/memory/
Dmemory_test.cc49 const auto bbt_opts = bbtf->table_options(); in GetCachePointersFromTableFactory() local
50 cache_set->insert(bbt_opts.block_cache.get()); in GetCachePointersFromTableFactory()
51 cache_set->insert(bbt_opts.block_cache_compressed.get()); in GetCachePointersFromTableFactory()
110 BlockBasedTableOptions bbt_opts; in TEST_F() local
111 bbt_opts.block_cache = NewLRUCache(4096 * 1000 * 10); in TEST_F()
/rocksdb-6.9/utilities/options/
Doptions_util_test.cc102 BlockBasedTableOptions bbt_opts; in TEST_F() local
103 bbt_opts.block_size = 32 * 1024; in TEST_F()
108 NewBlockBasedTableFactory(bbt_opts)); in TEST_F()
112 cf_opt_sample.table_factory.reset(NewBlockBasedTableFactory(bbt_opts)); in TEST_F()