lmdb-python-dbm icon indicating copy to clipboard operation
lmdb-python-dbm copied to clipboard

Python DBM style wrapper of LMDB

Results 3 lmdb-python-dbm issues
Sort by recently updated
recently updated
newest added

Hello, (first of all, thanks for this library!) I've been struggling with trying to use many concurrent workers reading from a database using this library. `lmdb` has a default parameter...

Something like this: ```python import shelve class ShelveBenchmark(BaseBenchmark): def __init__(self, db_tpl): super().__init__(db_tpl, "shelve") def open(self): return shelve.open(self.path) ```