twmht / python-rocksdb

Python bindings for RocksDB
BSD 3-Clause "New" or "Revised" License
276 stars 88 forks source link

Is BlockBasedTableFactory exposed in pybind11? #65

Open oersted opened 5 years ago

oersted commented 5 years ago

In options.cpp I can see that there is a table_factory argument in Options and ColumnFamilyOptions. There's also LRUCacheOptions and the cache.cpp file and the usual way to set up a block cache is through a table factory. But I cannot find any other mentions of table factories in the codebase.

I mainly want to be able to disable the block cache, or control its size, is there a way to do that currently in pybind11?