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?
In options.cpp I can see that there is a
table_factory
argument inOptions
andColumnFamilyOptions
. There's alsoLRUCacheOptions
and thecache.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?