Browse Source

Replace all KeyIdx with Key; make Key a simple size_t.

Stefano Cossu 6 years ago
parent
commit
e12c99b033

+ 8 - 9
lakesuperior/model/base.pxd

@@ -4,17 +4,16 @@ ctypedef tpl.tpl_bin Buffer
 
 
 # NOTE This may change in the future, e.g. if a different key size is to
 # NOTE This may change in the future, e.g. if a different key size is to
 # be forced.
 # be forced.
-ctypedef size_t KeyIdx
+ctypedef size_t Key
 
 
-ctypedef KeyIdx Key[1]
-ctypedef KeyIdx DoubleKey[2]
-ctypedef KeyIdx TripleKey[3]
-ctypedef KeyIdx QuadKey[4]
+ctypedef Key DoubleKey[2]
+ctypedef Key TripleKey[3]
+ctypedef Key QuadKey[4]
 
 
 cdef enum:
 cdef enum:
-    KLEN = sizeof(KeyIdx)
-    DBL_KLEN = 2 * sizeof(KeyIdx)
-    TRP_KLEN = 3 * sizeof(KeyIdx)
-    QUAD_KLEN = 4 * sizeof(KeyIdx)
+    KLEN = sizeof(Key)
+    DBL_KLEN = 2 * sizeof(Key)
+    TRP_KLEN = 3 * sizeof(Key)
+    QUAD_KLEN = 4 * sizeof(Key)
 
 
 cdef bytes buffer_dump(Buffer* buf)
 cdef bytes buffer_dump(Buffer* buf)

+ 7 - 7
lakesuperior/model/structures/callbacks.pxd

@@ -1,21 +1,21 @@
-from lakesuperior.model.base cimport KeyIdx, TripleKey
+from lakesuperior.model.base cimport Key, TripleKey
 
 
 cdef:
 cdef:
     bint lookup_sk_cmp_fn(
     bint lookup_sk_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     )
     )
     bint lookup_pk_cmp_fn(
     bint lookup_pk_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     )
     )
     bint lookup_ok_cmp_fn(
     bint lookup_ok_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     )
     )
     bint lookup_skpk_cmp_fn(
     bint lookup_skpk_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     )
     )
     bint lookup_skok_cmp_fn(
     bint lookup_skok_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     )
     )
     bint lookup_pkok_cmp_fn(
     bint lookup_pkok_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     )
     )

+ 7 - 7
lakesuperior/model/structures/callbacks.pyx

@@ -1,32 +1,32 @@
-from lakesuperior.model.base cimport KeyIdx, TripleKey
+from lakesuperior.model.base cimport Key, TripleKey
 
 
 cdef bint lookup_sk_cmp_fn(
 cdef bint lookup_sk_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     ):
     ):
     return spok[0] == k1
     return spok[0] == k1
 
 
 cdef bint lookup_pk_cmp_fn(
 cdef bint lookup_pk_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     ):
     ):
     return spok[1] == k1
     return spok[1] == k1
 
 
 cdef bint lookup_ok_cmp_fn(
 cdef bint lookup_ok_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     ):
     ):
     return spok[2] == k1
     return spok[2] == k1
 
 
 cdef bint lookup_skpk_cmp_fn(
 cdef bint lookup_skpk_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     ):
     ):
     return spok[0] == k1 and spok[1] == k2
     return spok[0] == k1 and spok[1] == k2
 
 
 cdef bint lookup_skok_cmp_fn(
 cdef bint lookup_skok_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     ):
     ):
     return spok[0] == k1 and spok[2] == k2
     return spok[0] == k1 and spok[2] == k2
 
 
 cdef bint lookup_pkok_cmp_fn(
 cdef bint lookup_pkok_cmp_fn(
-        const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+        const TripleKey* spok, const Key* k1, const Key* k2
     ):
     ):
     return spok[1] == k1 and spok[2] == k2
     return spok[1] == k1 and spok[2] == k2
 
 

+ 3 - 3
lakesuperior/model/structures/keyset.pxd

@@ -1,9 +1,9 @@
 from lakesuperior.model.base cimport (
 from lakesuperior.model.base cimport (
-    KeyIdx, Key, DoubleKey, TripleKey, Buffer
+    Key, Key, DoubleKey, TripleKey, Buffer
 )
 )
 
 
 ctypedef bint (*key_cmp_fn_t)(
 ctypedef bint (*key_cmp_fn_t)(
-    const TripleKey* spok, const KeyIdx* k1, const KeyIdx* k2
+    const TripleKey* spok, const Key* k1, const Key* k2
 )
 )
 
 
 cdef class Keyset:
 cdef class Keyset:
@@ -22,5 +22,5 @@ cdef class Keyset:
         Keyset copy(self)
         Keyset copy(self)
         void resize(self, size_t size=*) except *
         void resize(self, size_t size=*) except *
         Keyset lookup(
         Keyset lookup(
-            self, const KeyIdx* sk, const KeyIdx* pk, const KeyIdx* ok
+            self, const Key* sk, const Key* pk, const Key* ok
         )
         )

+ 6 - 6
lakesuperior/model/structures/keyset.pyx

@@ -158,7 +158,7 @@ cdef class Keyset:
 
 
 
 
     cdef Keyset lookup(
     cdef Keyset lookup(
-            self, const KeyIdx* sk, const KeyIdx* pk, const KeyIdx* ok
+            self, const Key* sk, const Key* pk, const Key* ok
     ):
     ):
         """
         """
         Look up triple keys.
         Look up triple keys.
@@ -168,15 +168,15 @@ cdef class Keyset:
 
 
         Any and all the terms may be NULL. A NULL term is treated as unbound.
         Any and all the terms may be NULL. A NULL term is treated as unbound.
 
 
-        :param const KeyIdx* sk: s key pointer.
-        :param const KeyIdx* pk: p key pointer.
-        :param const KeyIdx* ok: o key pointer.
+        :param const Key* sk: s key pointer.
+        :param const Key* pk: p key pointer.
+        :param const Key* ok: o key pointer.
         """
         """
         cdef:
         cdef:
             TripleKey spok
             TripleKey spok
             Keyset ret = Keyset(self.ct)
             Keyset ret = Keyset(self.ct)
-            KeyIdx* k1 = NULL
-            KeyIdx* k2 = NULL
+            Key* k1 = NULL
+            Key* k2 = NULL
             key_cmp_fn_t cmp_fn
             key_cmp_fn_t cmp_fn
 
 
         if sk and pk and ok: # s p o
         if sk and pk and ok: # s p o

+ 8 - 8
lakesuperior/store/ldp_rs/lmdb_triplestore.pxd

@@ -3,7 +3,7 @@ cimport lakesuperior.cy_include.cylmdb as lmdb
 cimport lakesuperior.cy_include.cytpl as tpl
 cimport lakesuperior.cy_include.cytpl as tpl
 
 
 from lakesuperior.model.base cimport (
 from lakesuperior.model.base cimport (
-    KeyIdx, Key, DoubleKey, TripleKey, Buffer
+    Key, DoubleKey, TripleKey, Buffer
 )
 )
 from lakesuperior.model.graph.graph cimport SimpleGraph
 from lakesuperior.model.graph.graph cimport SimpleGraph
 from lakesuperior.model.structures.keyset cimport Keyset
 from lakesuperior.model.structures.keyset cimport Keyset
@@ -37,19 +37,19 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         void _index_triple(self, int op, TripleKey spok) except *
         void _index_triple(self, int op, TripleKey spok) except *
         Keyset triple_keys(self, tuple triple_pattern, context=*)
         Keyset triple_keys(self, tuple triple_pattern, context=*)
         void _all_term_keys(self, term_type, cc.HashSet** tkeys) except *
         void _all_term_keys(self, term_type, cc.HashSet** tkeys) except *
-        void lookup_term(self, const KeyIdx* tk, Buffer* data) except *
+        void lookup_term(self, const Key* tk, Buffer* data) except *
         Keyset _lookup(self, tuple triple_pattern)
         Keyset _lookup(self, tuple triple_pattern)
-        Keyset _lookup_1bound(self, unsigned char idx, KeyIdx luk)
+        Keyset _lookup_1bound(self, unsigned char idx, Key luk)
         Keyset _lookup_2bound(
         Keyset _lookup_2bound(
             self, unsigned char idx1, unsigned char idx2, DoubleKey tks
             self, unsigned char idx1, unsigned char idx2, DoubleKey tks
         )
         )
         object from_key(self, const Key tk)
         object from_key(self, const Key tk)
-        KeyIdx _to_key_idx(self, term) except -1
-        void all_contexts(self, KeyIdx** ctx, size_t* sz, triple=*) except *
-        KeyIdx _append(
+        Key _to_key_idx(self, term) except -1
+        void all_contexts(self, Key** ctx, size_t* sz, triple=*) except *
+        Key _append(
                 self, Buffer *value,
                 self, Buffer *value,
                 unsigned char *dblabel=*, lmdb.MDB_txn *txn=*,
                 unsigned char *dblabel=*, lmdb.MDB_txn *txn=*,
                 unsigned int flags=*)
                 unsigned int flags=*)
 
 
-        #KeyIdx bytes_to_idx(self, const unsigned char* bs)
-        #unsigned char* idx_to_bytes(KeyIdx idx)
+        #Key bytes_to_idx(self, const unsigned char* bs)
+        #unsigned char* idx_to_bytes(Key idx)

+ 58 - 74
lakesuperior/store/ldp_rs/lmdb_triplestore.pyx

@@ -18,7 +18,7 @@ cimport lakesuperior.cy_include.cylmdb as lmdb
 
 
 from lakesuperior.model.base cimport (
 from lakesuperior.model.base cimport (
     KLEN, DBL_KLEN, TRP_KLEN, QUAD_KLEN,
     KLEN, DBL_KLEN, TRP_KLEN, QUAD_KLEN,
-    KeyIdx, Key, DoubleKey, TripleKey, QuadKey,
+    Key, DoubleKey, TripleKey, QuadKey,
     Buffer, buffer_dump
     Buffer, buffer_dump
 )
 )
 from lakesuperior.model.graph.graph cimport SimpleGraph, Imr
 from lakesuperior.model.graph.graph cimport SimpleGraph, Imr
@@ -172,7 +172,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             Key ck
             Key ck
 
 
         if context is not None:
         if context is not None:
-            ck = [self._to_key_idx(context)]
+            ck = self._to_key_idx(context)
             key_v.mv_data = &ck
             key_v.mv_data = &ck
             key_v.mv_size = KLEN
             key_v.mv_size = KLEN
 
 
@@ -234,7 +234,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                     key_v.mv_size = HLEN
                     key_v.mv_size = HLEN
                     _check(lmdb.mdb_get(
                     _check(lmdb.mdb_get(
                             self.txn, self.get_dbi('th:t'), &key_v, &data_v))
                             self.txn, self.get_dbi('th:t'), &key_v, &data_v))
-                    spock[i] = (<Key>data_v.mv_data)[0]
+                    spock[i] = (<Key*>data_v.mv_data)[0]
                     logger.info('Hash {} with key {} found. Not adding.'.format(thash[:HLEN], spock[i]))
                     logger.info('Hash {} with key {} found. Not adding.'.format(thash[:HLEN], spock[i]))
                 except KeyNotFoundError:
                 except KeyNotFoundError:
                     # If term_obj is not found, add it...
                     # If term_obj is not found, add it...
@@ -350,22 +350,22 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 #logger.debug('Working in existing RW transaction.')
                 #logger.debug('Working in existing RW transaction.')
                 # Use existing R/W transaction.
                 # Use existing R/W transaction.
                 # Main entry.
                 # Main entry.
-                ck = [self._append(pk_gr, b't:st', txn=tmp_txn)]
-                logger.info(f'Added new ck with key#: {ck[0]}')
+                ck = self._append(pk_gr, b't:st', txn=tmp_txn)
+                logger.info(f'Added new ck with key#: {ck}')
                 # Index.
                 # Index.
 
 
                 key_v.mv_data = chash
                 key_v.mv_data = chash
                 key_v.mv_size = HLEN
                 key_v.mv_size = HLEN
-                data_v.mv_data = ck
+                data_v.mv_data = &ck
                 data_v.mv_size = KLEN
                 data_v.mv_size = KLEN
                 _check(lmdb.mdb_put(
                 _check(lmdb.mdb_put(
                     self.txn, self.get_dbi(b'th:t'), &key_v, &data_v, 0
                     self.txn, self.get_dbi(b'th:t'), &key_v, &data_v, 0
                 ))
                 ))
 
 
                 # Add to list of contexts.
                 # Add to list of contexts.
-                key_v.mv_data = ck
+                key_v.mv_data = &ck
                 key_v.mv_size = KLEN
                 key_v.mv_size = KLEN
-                data_v.mv_data = ck # Whatever, length is zero anyways
+                data_v.mv_data = &ck # Whatever, length is zero anyways
                 data_v.mv_size = 0
                 data_v.mv_size = 0
                 _check(lmdb.mdb_put(
                 _check(lmdb.mdb_put(
                     self.txn, self.get_dbi(b'c:'), &key_v, &data_v, 0
                     self.txn, self.get_dbi(b'c:'), &key_v, &data_v, 0
@@ -387,7 +387,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         #logger.debug('Removing triple: {}'.format(triple_pattern))
         #logger.debug('Removing triple: {}'.format(triple_pattern))
         if context is not None:
         if context is not None:
             try:
             try:
-                ck = [self._to_key_idx(context)]
+                ck = self._to_key_idx(context)
             except KeyNotFoundError:
             except KeyNotFoundError:
                 # If context is specified but not found, return to avoid
                 # If context is specified but not found, return to avoid
                 # deleting the wrong triples.
                 # deleting the wrong triples.
@@ -405,7 +405,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             match_set.seek()
             match_set.seek()
             if context is not None:
             if context is not None:
                 #logger.debug('Removing triples in matching context.')
                 #logger.debug('Removing triples in matching context.')
-                ck_v.mv_data = ck
+                ck_v.mv_data = &ck
                 ck_v.mv_size = KLEN
                 ck_v.mv_size = KLEN
                 while match_set.get_next(&spok_cur):
                 while match_set.get_next(&spok_cur):
                     spok_v.mv_data = spok_cur
                     spok_v.mv_data = spok_cur
@@ -419,7 +419,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                         _check(lmdb.mdb_cursor_del(dcur, 0))
                         _check(lmdb.mdb_cursor_del(dcur, 0))
 
 
                         # Restore ck after delete.
                         # Restore ck after delete.
-                        ck_v.mv_data = ck
+                        ck_v.mv_data = &ck
 
 
                         # Delete c:spo entry.
                         # Delete c:spo entry.
                         try:
                         try:
@@ -455,7 +455,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                         # Move on to the next SPO.
                         # Move on to the next SPO.
                         continue
                         continue
                     else:
                     else:
-                        ck = <Key>ck_v.mv_data
+                        ck = (<Key*>ck_v.mv_data)[0]
                         logger.debug(f'Removing {<TripleKey>spok_cur} from main.')
                         logger.debug(f'Removing {<TripleKey>spok_cur} from main.')
                         while True:
                         while True:
                             # Delete c:spo association.
                             # Delete c:spo association.
@@ -500,17 +500,10 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         :param TripleKey spok: Triple key to index.
         :param TripleKey spok: Triple key to index.
         """
         """
         cdef:
         cdef:
-            Key keys[3]
             DoubleKey dbl_keys[3]
             DoubleKey dbl_keys[3]
             size_t i = 0
             size_t i = 0
             lmdb.MDB_val key_v, dbl_key_v
             lmdb.MDB_val key_v, dbl_key_v
 
 
-        keys = [
-            [spok[0]], # sk
-            [spok[1]], # pk
-            [spok[2]], # ok
-        ]
-
         dbl_keys = [
         dbl_keys = [
             [spok[1], spok[2]], # pok
             [spok[1], spok[2]], # pok
             [spok[0], spok[2]], # sok
             [spok[0], spok[2]], # sok
@@ -519,9 +512,9 @@ cdef class LmdbTriplestore(BaseLmdbStore):
 
 
         logger.info(f'''Indices:
         logger.info(f'''Indices:
         spok: {[spok[0], spok[1], spok[2]]}
         spok: {[spok[0], spok[1], spok[2]]}
-        sk: {keys[0]}
-        pk: {keys[1]}
-        ok: {keys[2]}
+        sk: {spok[0]}
+        pk: {spok[1]}
+        ok: {spok[2]}
         pok: {dbl_keys[0]}
         pok: {dbl_keys[0]}
         sok: {dbl_keys[1]}
         sok: {dbl_keys[1]}
         spk: {dbl_keys[2]}
         spk: {dbl_keys[2]}
@@ -539,7 +532,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             cur1 = self._cur_open(self.lookup_indices[i]) # s:po, p:so, o:sp
             cur1 = self._cur_open(self.lookup_indices[i]) # s:po, p:so, o:sp
             cur2 = self._cur_open(self.lookup_indices[i + 3])# po:s, so:p, sp:o
             cur2 = self._cur_open(self.lookup_indices[i + 3])# po:s, so:p, sp:o
             try:
             try:
-                key_v.mv_data = keys[i]
+                key_v.mv_data = spok + i
                 dbl_key_v.mv_data = dbl_keys[i]
                 dbl_key_v.mv_data = dbl_keys[i]
 
 
                 # Removal op indexing.
                 # Removal op indexing.
@@ -548,23 +541,23 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                         _check(lmdb.mdb_cursor_get(
                         _check(lmdb.mdb_cursor_get(
                                 cur1, &key_v, &dbl_key_v, lmdb.MDB_GET_BOTH))
                                 cur1, &key_v, &dbl_key_v, lmdb.MDB_GET_BOTH))
                         logger.info(
                         logger.info(
-                                f'Removed: {keys[i]}, {dbl_keys[i]}')
+                                f'Removed: {spok[i]}, {dbl_keys[i]}')
                     except KeyNotFoundError:
                     except KeyNotFoundError:
                         logger.info(
                         logger.info(
-                                f'Not found: {keys[i]}, {dbl_keys[i]}')
+                                f'Not found: {spok[i]}, {dbl_keys[i]}')
                         pass
                         pass
                     else:
                     else:
                         _check(lmdb.mdb_cursor_del(cur1, 0))
                         _check(lmdb.mdb_cursor_del(cur1, 0))
 
 
                     # Restore pointers after delete.
                     # Restore pointers after delete.
-                    key_v.mv_data = keys[i]
+                    key_v.mv_data = spok + i
                     dbl_key_v.mv_data = dbl_keys[i]
                     dbl_key_v.mv_data = dbl_keys[i]
                     try:
                     try:
                         _check(lmdb.mdb_cursor_get(
                         _check(lmdb.mdb_cursor_get(
                                 cur2, &dbl_key_v, &key_v, lmdb.MDB_GET_BOTH))
                                 cur2, &dbl_key_v, &key_v, lmdb.MDB_GET_BOTH))
-                        logger.info(f'Removed: {dbl_keys[i]}, {keys[i]}')
+                        logger.info(f'Removed: {dbl_keys[i]}, {spok[i]}')
                     except KeyNotFoundError:
                     except KeyNotFoundError:
-                        logger.info(f'Not found: {dbl_keys[i]}, {keys[i]}')
+                        logger.info(f'Not found: {dbl_keys[i]}, {spok[i]}')
                         pass
                         pass
                     else:
                     else:
                         _check(lmdb.mdb_cursor_del(cur2, 0))
                         _check(lmdb.mdb_cursor_del(cur2, 0))
@@ -573,7 +566,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 elif op == IDX_OP_ADD:
                 elif op == IDX_OP_ADD:
                     logger.info('Adding to index `{}`: {}, {}'.format(
                     logger.info('Adding to index `{}`: {}, {}'.format(
                         self.lookup_indices[i],
                         self.lookup_indices[i],
-                        <Key>key_v.mv_data,
+                        (<Key*>key_v.mv_data)[0],
                         <DoubleKey>dbl_key_v.mv_data
                         <DoubleKey>dbl_key_v.mv_data
                     ))
                     ))
 
 
@@ -581,13 +574,13 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                         _check(lmdb.mdb_cursor_put(
                         _check(lmdb.mdb_cursor_put(
                                 cur1, &key_v, &dbl_key_v, lmdb.MDB_NODUPDATA))
                                 cur1, &key_v, &dbl_key_v, lmdb.MDB_NODUPDATA))
                     except KeyExistsError:
                     except KeyExistsError:
-                        logger.info(f'Key {keys[i]} exists already.')
+                        logger.info(f'Key {spok[i]} exists already.')
                         pass
                         pass
 
 
                     logger.info('Adding to index `{}`: {}, {}'.format(
                     logger.info('Adding to index `{}`: {}, {}'.format(
                         self.lookup_indices[i + 3],
                         self.lookup_indices[i + 3],
                         <DoubleKey>dbl_key_v.mv_data,
                         <DoubleKey>dbl_key_v.mv_data,
-                        <Key>key_v.mv_data
+                        (<Key*>key_v.mv_data)[0]
                     ))
                     ))
 
 
                     try:
                     try:
@@ -621,7 +614,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
 
 
         # Gather information on the graph prior to deletion.
         # Gather information on the graph prior to deletion.
         try:
         try:
-            ck = [self._to_key_idx(gr_uri)]
+            ck = self._to_key_idx(gr_uri)
         except KeyNotFoundError:
         except KeyNotFoundError:
             return
             return
 
 
@@ -638,9 +631,9 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         ck_v.mv_size = KLEN
         ck_v.mv_size = KLEN
         chash_v.mv_size = HLEN
         chash_v.mv_size = HLEN
         try:
         try:
-            ck_v.mv_data = ck
+            ck_v.mv_data = &ck
             _check(lmdb.mdb_del(self.txn, self.get_dbi(b'c:'), &ck_v, NULL))
             _check(lmdb.mdb_del(self.txn, self.get_dbi(b'c:'), &ck_v, NULL))
-            ck_v.mv_data = ck
+            ck_v.mv_data = &ck
             _check(lmdb.mdb_del(self.txn, self.get_dbi(b't:st'), &ck_v, NULL))
             _check(lmdb.mdb_del(self.txn, self.get_dbi(b't:st'), &ck_v, NULL))
             chash_v.mv_data = chash
             chash_v.mv_data = chash
             _check(lmdb.mdb_del(self.txn, self.get_dbi(b'th:t'), &chash_v, NULL))
             _check(lmdb.mdb_del(self.txn, self.get_dbi(b'th:t'), &chash_v, NULL))
@@ -658,14 +651,14 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         """
         """
         cdef:
         cdef:
             size_t sz, i
             size_t sz, i
-            KeyIdx* match
+            Key* match
 
 
         try:
         try:
             self.all_contexts(&match, &sz, triple)
             self.all_contexts(&match, &sz, triple)
             ret = set()
             ret = set()
 
 
             for i in range(sz):
             for i in range(sz):
-                ret.add(self.from_key(match + i))
+                ret.add(self.from_key(match[i]))
         finally:
         finally:
             free(match)
             free(match)
 
 
@@ -718,8 +711,6 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 logger.info('mv_data: {}'.format(
                 logger.info('mv_data: {}'.format(
                     (<unsigned char*>key_v.mv_data)[:TRP_KLEN]))
                     (<unsigned char*>key_v.mv_data)[:TRP_KLEN]))
                 # Get contexts associated with each triple.
                 # Get contexts associated with each triple.
-                logger.info('smome bogus memory exercise.')
-                logger.info('smome')
                 logger.info('Checking contexts for triples: {} {} {}'.format(
                 logger.info('Checking contexts for triples: {} {} {}'.format(
                     it_cur[0],
                     it_cur[0],
                     it_cur[1],
                     it_cur[1],
@@ -729,7 +720,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 # This shall never be MDB_NOTFOUND.
                 # This shall never be MDB_NOTFOUND.
                 _check(lmdb.mdb_cursor_get(cur, &key_v, &data_v, lmdb.MDB_SET))
                 _check(lmdb.mdb_cursor_get(cur, &key_v, &data_v, lmdb.MDB_SET))
                 while True:
                 while True:
-                    c_uri = self.from_key(<Key>data_v.mv_data)
+                    c_uri = self.from_key((<Key*>data_v.mv_data)[0])
                     contexts.append(Imr(uri=c_uri, store=self))
                     contexts.append(Imr(uri=c_uri, store=self))
                     try:
                     try:
                         _check(lmdb.mdb_cursor_get(
                         _check(lmdb.mdb_cursor_get(
@@ -741,9 +732,9 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 #    (<TripleKey>key_v.mv_data)[:TRP_KLEN], tuple(contexts)))
                 #    (<TripleKey>key_v.mv_data)[:TRP_KLEN], tuple(contexts)))
                 yield (
                 yield (
                     (
                     (
-                        self.from_key(<Key>key_v.mv_data),
-                        self.from_key(<Key>key_v.mv_data + 1),
-                        self.from_key(<Key>key_v.mv_data + 2),
+                        self.from_key((<Key*>key_v.mv_data)[0]),
+                        self.from_key((<Key*>key_v.mv_data)[1]),
+                        self.from_key((<Key*>key_v.mv_data)[2]),
                     ),
                     ),
                     tuple(contexts)
                     tuple(contexts)
                 )
                 )
@@ -830,7 +821,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
 
 
         if context is not None:
         if context is not None:
             try:
             try:
-                ck = [self._to_key_idx(context)]
+                ck = self._to_key_idx(context)
             except KeyNotFoundError:
             except KeyNotFoundError:
                 # Context not found.
                 # Context not found.
                 return Keyset()
                 return Keyset()
@@ -838,7 +829,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             icur = self._cur_open('c:spo')
             icur = self._cur_open('c:spo')
 
 
             try:
             try:
-                key_v.mv_data = ck
+                key_v.mv_data = &ck
                 key_v.mv_size = KLEN
                 key_v.mv_size = KLEN
 
 
                 # s p o c
                 # s p o c
@@ -846,17 +837,13 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                     #logger.debug('Lookup: s p o c')
                     #logger.debug('Lookup: s p o c')
                     for i, term in enumerate(triple_pattern):
                     for i, term in enumerate(triple_pattern):
                         try:
                         try:
-                            tk = [self._to_key_idx(term)]
+                            tk = self._to_key_idx(term)
                         except KeyNotFoundError:
                         except KeyNotFoundError:
                             # A term key was not found.
                             # A term key was not found.
                             return Keyset()
                             return Keyset()
-                        spok[i] = tk[0]
+                        spok[i] = tk
                     data_v.mv_data = spok
                     data_v.mv_data = spok
                     data_v.mv_size = TRP_KLEN
                     data_v.mv_size = TRP_KLEN
-                    #logger.debug(
-                    #        'Found spok {}. Matching with context {}'.format(
-                    #            (<TripleKey>data_v.mv_data)[: TRP_KLEN],
-                    #            (<Key>key_v.mv_data)[: KLEN]))
                     try:
                     try:
                         _check(lmdb.mdb_cursor_get(
                         _check(lmdb.mdb_cursor_get(
                                 icur, &key_v, &data_v, lmdb.MDB_GET_BOTH))
                                 icur, &key_v, &data_v, lmdb.MDB_GET_BOTH))
@@ -909,7 +896,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                         return Keyset()
                         return Keyset()
 
 
                     #logger.debug('Allocating for context filtering.')
                     #logger.debug('Allocating for context filtering.')
-                    key_v.mv_data = ck
+                    key_v.mv_data = &ck
                     key_v.mv_size = KLEN
                     key_v.mv_size = KLEN
                     data_v.mv_size = TRP_KLEN
                     data_v.mv_size = TRP_KLEN
 
 
@@ -959,7 +946,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             lmdb.MDB_stat db_stat
             lmdb.MDB_stat db_stat
             lmdb.MDB_val spok_v, ck_v
             lmdb.MDB_val spok_v, ck_v
             TripleKey spok
             TripleKey spok
-            KeyIdx sk, pk, ok, tk1, tk2, tk3
+            Key sk, pk, ok, tk1, tk2, tk3
 
 
         s, p, o = triple_pattern
         s, p, o = triple_pattern
 
 
@@ -1050,7 +1037,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             self._cur_close(dcur)
             self._cur_close(dcur)
 
 
 
 
-    cdef Keyset _lookup_1bound(self, unsigned char idx, KeyIdx luk):
+    cdef Keyset _lookup_1bound(self, unsigned char idx, Key luk):
         """
         """
         Lookup triples for a pattern with one bound term.
         Lookup triples for a pattern with one bound term.
 
 
@@ -1067,6 +1054,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             size_t ct, i
             size_t ct, i
             lmdb.MDB_cursor *icur
             lmdb.MDB_cursor *icur
             lmdb.MDB_val key_v, data_v
             lmdb.MDB_val key_v, data_v
+            #DoubleKey* lu_dset
             TripleKey spok
             TripleKey spok
 
 
         logger.info(f'lookup 1bound: {idx}, {luk}')
         logger.info(f'lookup 1bound: {idx}, {luk}')
@@ -1193,7 +1181,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             _check(lmdb.mdb_cursor_get(
             _check(lmdb.mdb_cursor_get(
                 icur, &key_v, &data_v, lmdb.MDB_GET_MULTIPLE))
                 icur, &key_v, &data_v, lmdb.MDB_GET_MULTIPLE))
             while True:
             while True:
-                lu_dset = <KeyIdx*>data_v.mv_data
+                lu_dset = <Key*>data_v.mv_data
                 for i in range(data_v.mv_size // KLEN):
                 for i in range(data_v.mv_size // KLEN):
                     logger.info('Got term in lookup_2bound: {lu_dset[i]}')
                     logger.info('Got term in lookup_2bound: {lu_dset[i]}')
                     spok[term_order[0]] = luk[0]
                     spok[term_order[0]] = luk[0]
@@ -1317,7 +1305,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
 
 
 
 
     cdef void all_contexts(
     cdef void all_contexts(
-        self, KeyIdx** ctx, size_t* sz, triple=None
+        self, Key** ctx, size_t* sz, triple=None
     ) except *:
     ) except *:
         """
         """
         Get a list of all contexts.
         Get a list of all contexts.
@@ -1361,11 +1349,11 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 ctx[0] = NULL
                 ctx[0] = NULL
                 return
                 return
 
 
-            ctx[0] = <KeyIdx*>malloc(stat.ms_entries * KLEN)
+            ctx[0] = <Key*>malloc(stat.ms_entries * KLEN)
             sz[0] = 0
             sz[0] = 0
 
 
             while True:
             while True:
-                ctx[0][sz[0]] = (<Key>data_v.mv_data)[0]
+                ctx[0][sz[0]] = (<Key*>data_v.mv_data)[0]
                 try:
                 try:
                     _check(lmdb.mdb_cursor_get(
                     _check(lmdb.mdb_cursor_get(
                         cur, &key_v, &data_v, scan_op))
                         cur, &key_v, &data_v, scan_op))
@@ -1375,13 +1363,12 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 sz[0] += 1
                 sz[0] += 1
 
 
         finally:
         finally:
-            #pass
             self._cur_close(cur)
             self._cur_close(cur)
 
 
 
 
     # Key conversion methods.
     # Key conversion methods.
 
 
-    cdef inline void lookup_term(self, const KeyIdx* tk, Buffer* data) except *:
+    cdef inline void lookup_term(self, const Key* tk, Buffer* data) except *:
         """
         """
         look up a term by key.
         look up a term by key.
 
 
@@ -1412,15 +1399,15 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         """
         """
         cdef Buffer pk_t
         cdef Buffer pk_t
 
 
-        logger.info(f'Looking up key: {tk[0]}')
-        self.lookup_term(tk, &pk_t)
+        logger.info(f'Looking up key: {tk}')
+        self.lookup_term(&tk, &pk_t)
         logger.info(f'Serialized term found: {buffer_dump(&pk_t)}')
         logger.info(f'Serialized term found: {buffer_dump(&pk_t)}')
 
 
         # TODO Make Term a class and return that.
         # TODO Make Term a class and return that.
         return deserialize_to_rdflib(&pk_t)
         return deserialize_to_rdflib(&pk_t)
 
 
 
 
-    cdef inline KeyIdx _to_key_idx(self, term) except -1:
+    cdef inline Key _to_key_idx(self, term) except -1:
         """
         """
         Convert a triple, quad or term into a key index (bare number).
         Convert a triple, quad or term into a key index (bare number).
 
 
@@ -1436,6 +1423,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             Hash128 thash
             Hash128 thash
             Buffer pk_t
             Buffer pk_t
 
 
+        logger.info(f'Serializing term: {term}')
         serialize_from_rdflib(term, &pk_t)
         serialize_from_rdflib(term, &pk_t)
         hash128(&pk_t, &thash)
         hash128(&pk_t, &thash)
         key_v.mv_data = thash
         key_v.mv_data = thash
@@ -1444,12 +1432,11 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         dbi = self.get_dbi('th:t')
         dbi = self.get_dbi('th:t')
         #logger.debug(f'DBI: {dbi}')
         #logger.debug(f'DBI: {dbi}')
         _check(lmdb.mdb_get(self.txn, dbi, &key_v, &data_v))
         _check(lmdb.mdb_get(self.txn, dbi, &key_v, &data_v))
-        #logger.debug('Found key: {}'.format((<Key>data_v.mv_data)[: KLEN]))
 
 
-        return (<Key>data_v.mv_data)[0]
+        return (<Key*>data_v.mv_data)[0]
 
 
 
 
-    cdef KeyIdx _append(
+    cdef Key _append(
         self, Buffer *value,
         self, Buffer *value,
         unsigned char *dblabel=b'', lmdb.MDB_txn *txn=NULL,
         unsigned char *dblabel=b'', lmdb.MDB_txn *txn=NULL,
         unsigned int flags=0
         unsigned int flags=0
@@ -1460,13 +1447,12 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         :param lmdb.Cursor cur: The write cursor to act on.
         :param lmdb.Cursor cur: The write cursor to act on.
         :param list(bytes) values: Value(s) to append.
         :param list(bytes) values: Value(s) to append.
 
 
-        :rtype: KeyIdx
+        :rtype: Key
         :return: Index of key inserted.
         :return: Index of key inserted.
         """
         """
         cdef:
         cdef:
             lmdb.MDB_cursor *cur
             lmdb.MDB_cursor *cur
-            KeyIdx new_idx
-            Key key
+            Key new_idx
             lmdb.MDB_val key_v, data_v
             lmdb.MDB_val key_v, data_v
 
 
         if txn is NULL:
         if txn is NULL:
@@ -1480,22 +1466,20 @@ cdef class LmdbTriplestore(BaseLmdbStore):
             logger.debug('First key inserted here.')
             logger.debug('First key inserted here.')
             new_idx = 0
             new_idx = 0
         else:
         else:
-            new_idx = (<Key>key_v.mv_data)[0] + 1
+            new_idx = (<Key*>key_v.mv_data)[0] + 1
             logger.debug(f'New index value: {new_idx}')
             logger.debug(f'New index value: {new_idx}')
         finally:
         finally:
             #pass
             #pass
             self._cur_close(cur)
             self._cur_close(cur)
 
 
-        key = [new_idx]
-        key_v.mv_data = key
-        logger.debug(f'Key: {key[0]}')
-        logger.debug(f'Key addr: 0x{<size_t>key:02x}')
+        key_v.mv_data = &new_idx
+        logger.debug(f'New index: {new_idx}')
         logger.debug('Key data inserted: {}'.format((<unsigned char*>key_v.mv_data)[:KLEN]))
         logger.debug('Key data inserted: {}'.format((<unsigned char*>key_v.mv_data)[:KLEN]))
         key_v.mv_size = KLEN
         key_v.mv_size = KLEN
         data_v.mv_data = value.addr
         data_v.mv_data = value.addr
         data_v.mv_size = value.sz
         data_v.mv_size = value.sz
         logger.info('Appending value {} to db {} with key: {}'.format(
         logger.info('Appending value {} to db {} with key: {}'.format(
-            buffer_dump(value), dblabel.decode(), key[0]))
+            buffer_dump(value), dblabel.decode(), new_idx))
         #logger.debug('data size: {}'.format(data_v.mv_size))
         #logger.debug('data size: {}'.format(data_v.mv_size))
         lmdb.mdb_put(
         lmdb.mdb_put(
                 txn, self.get_dbi(dblabel), &key_v, &data_v,
                 txn, self.get_dbi(dblabel), &key_v, &data_v,