浏览代码

Attempt to properly garbage collect readers.

Stefano Cossu 7 年之前
父节点
当前提交
c64d9b9252
共有 1 个文件被更改,包括 11 次插入3 次删除
  1. 11 3
      lakesuperior/store/ldp_rs/lmdb_store.py

+ 11 - 3
lakesuperior/store/ldp_rs/lmdb_store.py

@@ -431,6 +431,7 @@ class LmdbStore(Store):
                 self.rollback()
 
         self.data_env.close()
+        self.idx_env.close()
 
 
     def destroy(self, path):
@@ -708,9 +709,13 @@ class LmdbStore(Store):
         '''
         Commit main transaction and push action queue.
         '''
-        if self.is_txn_open:
+        logger.debug('Committing transaction.')
+        try:
             self.data_txn.commit()
             self.idx_txn.commit()
+        except lmdb.Error:
+            pass
+
         self.data_txn = self.idx_txn = self.is_txn_rw = None
 
 
@@ -718,10 +723,13 @@ class LmdbStore(Store):
         '''
         Roll back main transaction.
         '''
-        if self.is_txn_open:
+        logger.debug('Rolling back transaction.')
+        try:
             self.data_txn.abort()
             self.idx_txn.abort()
-        self.data_txn = self.idx_txn = self.is_txn_rw = None
+        except lmdb.Error:
+            pass
+        self.is_txn_rw = None
 
 
     ## PRIVATE METHODS ##