Kaynağa Gözat

Open RW transaction for NS binding.

Stefano Cossu 7 yıl önce
ebeveyn
işleme
5e9a6f5318
1 değiştirilmiş dosya ile 12 ekleme ve 4 silme
  1. 12 4
      lakesuperior/store_layouts/ldp_rs/lmdb_store.py

+ 12 - 4
lakesuperior/store_layouts/ldp_rs/lmdb_store.py

@@ -539,10 +539,18 @@ class LmdbStore(Store):
         '''
         prefix = s2b(prefix)
         namespace = s2b(namespace)
-        with self.data_txn.cursor(self.dbs['pfx:ns']) as cur:
-            cur.put(prefix, namespace)
-        with self.idx_txn.cursor(self.dbs['ns:pfx']) as cur:
-            cur.put(namespace, prefix)
+        if self.is_txn_rw:
+            with self.data_txn.cursor(self.dbs['pfx:ns']) as cur:
+                cur.put(prefix, namespace)
+            with self.idx_txn.cursor(self.dbs['ns:pfx']) as cur:
+                cur.put(namespace, prefix)
+        else:
+            with self.data_env.begin(write=True) as wtxn:
+                with wtxn.cursor(self.dbs['pfx:ns']) as cur:
+                    cur.put(prefix, namespace)
+            with self.idx_env.begin(write=True) as wtxn:
+                with wtxn.cursor(self.dbs['ns:pfx']) as cur:
+                    cur.put(namespace, prefix)
 
 
     def namespace(self, prefix):