iFA

Results 39 comments of iFA

Nope, just git clone it, export the folders and `python setup.py install`

https://github.com/iFA88/python-rocksdb/releases

Forget pypi, build from source.

No its not supported, but I dont think that you need this. I use many CF in my own database, and the days I have read all keys from the...

Sorry for late answer. I just saw the rocksdb#4112 issue, very interesting. I have just these stats in the log: (The end is cutted) ``` ** Compaction Stats [table:transactions:index:byIsCoinbase:data] **...

You can use WriteBatch for that, or even a custom writebatch which stores the key data and statuses for from that.

> Not really, because I need read-write conflict detection by using GetForUpdate. Yeah, you can do that in python. You can use `bisect` for automatic ordering when you need iter...

> I am not sure I understand what you mean.. How does bisect help me with this? So simple: ``` class OwnWriteBatch: def __init__(self, db): self.db = db self.keys =...

> Right. But this still does not provide read-write or write-write conflict detection. I _do_ need transactions for that. Can you explain that a little more?

I'm using `threading.RLock` for that. I think what you want there is a "simple" workaround for that, but the `Transactions` is currently not supported.