python-rocksdb
python-rocksdb copied to clipboard
Python bindings for RocksDB
RocksDB 6.1 has added support for secondary instances which allow read only connections to continuously follow changes from a primary instance (not possible with the current readonly support). I believe...
I experience a hard crash when closing a DB. I have experimented with a number of diverse settings. No matter the load or the contents of the database it always...
I've been using python-rocksdb for a large kv store (~100 million records). I'd like to disable any caching by rocksdb, since the access of those records is pretty random, and...
The line in my code `db.iterkeys(cf)` causes the following crash. (`cf` is a valid `ColumnFaimlyHandle` retrieved using `db.get_column_family`.) ``` pthread destroy cv: Invalid argument Abort trap: 6 ```
Added descriptor for `create_missing_column_families` db option
Could we have `default_cf_name` exposed as a class attribute/property on `DB`? I know it should always be "default" for now, but since the underlying rocksdb library exposes it, and perhaps...
There seems to exist bindings for column families, but no documentation (API or otherwise) about them. Would you kindly be able to add such documentation?
add cache_index_and_filter_blocks options, which is import when bloom filter
It seems the bindings are missing transaction support.