python - 似乎无法让 CodernityDB 索引工作

标签 python codernity

我正在我的一个项目中试用 CodernityDB。我运行了 minitwit 示例,但在我的项目中尝试一些示例代码似乎不起作用。我似乎错过了什么?

from CodernityDB.database_thread_safe import ThreadSafeDatabase
from CodernityDB.hash_index import HashIndex

import uuid

class PumpIndex(HashIndex):

    def __init__(self, *args, **kwargs):
        kwargs['key_format'] = '32s'
        super(PumpIndex, self).__init__(*args, **kwargs)

    def make_key_value(self, data):
        if data['t'] == 'pump':
            id = data['id']
            # if not isinstance(login, basestring):
            #     login = str(login)
            return id, {'name': data['name']}

    def make_key(self, key):
        return key

    def run_all(self, db):
        it = db.get_many(self.name, with_doc=True)
        for curr in it:
            curr['id'] = curr['doc']['id']
            curr['name'] = curr['doc']['name']
            curr['hardware_type'] = curr['doc']['hardware_type']
            curr['onboard_pump_id'] = curr['doc']['onboard_pump_id']
            curr['pressure_sensor_id'] = curr['doc']['pressure_sensor_id']
            curr['pressure_min'] = curr['doc']['pressure_min']
            curr['pressure_max'] = curr['doc']['pressure_max']
            curr['ignore_errors'] = curr['doc']['ignore_errors']
            curr['simultaneous_zones'] = curr['doc']['simultaneous_zones']
            del curr['doc']
            yield curr

db = ThreadSafeDatabase('~/Desktop/test')

if db.exists():
    db.open()
    db.reindex()
else:

    db.create()
    db.add_index(PumpIndex(db.path, 'pump'))

for x in range(0,10):
    id = uuid.uuid4().hex
    name = 'Test %d' % x
    db.insert(dict(
                t='pump',
                id=id,
                name=name,
                hardware_type="onboard",
                onboard_pump_id=None,
                pressure_sensor_id=None,
                pressure_min=None,
                pressure_max=None,
                ignore_errors=None,
                simultaneous_zones=None
            ))

print int(db.count(db.get_many, 'pump'))
print int(len(list(db.run('pump', 'all'))))

我得到的控制台输出:

{'status': 'o', 'start': 100, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 304, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 508, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 712, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 916, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 1120, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 1324, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 1528, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 1732, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
{'status': 'o', 'start': 1936, 'self': <CodernityDB.storage.IU_Storage object at 0x10bb1ed50>, 'size': 204}
0
0

另外一个问题,有没有可能获取不到Codeernity的status输出?它对开发很有用,但对生产没那么有用。

最佳答案

经过一番搜寻后,我发现了伪造的打印品。

CodenityDB\storage.py::135 中,get() 方法打印locals:

    def get(self, start, size, status='c'):
       if status == 'd':
           return None
       else:
           print locals()
           self._f.seek(start)
           return self.data_from(self._f.read(size))

在不编辑站点包的情况下,我用自己的方法对方法进行了猴子修补。

关于python - 似乎无法让 CodernityDB 索引工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33360197/

相关文章:

python - Django - 如何在登录时设置默认值 request.session ?

python - 将 Scipy curve_fit 与分段函数一起使用

python - StringIO 和 Pandas read_csv

python - 带有字符串值的 codernitydb 索引

python - 将 sqlalchemy 行对象转换为 python dict

python - Django - 迁移混淆了吗?