Exemplo n.º 1
0
    def delete(self, key):
        ''' Delete the supplied value at the given key.

        :param key: The key to delete the value at
        '''
        LDB.leveldb_writebatch_delete(self.write_batch, key, len(key))
        return self