当前位置: 首页>>代码示例>>Python>>正文


Python Database.reindex方法代码示例

本文整理汇总了Python中CodernityDB.database.Database.reindex方法的典型用法代码示例。如果您正苦于以下问题:Python Database.reindex方法的具体用法?Python Database.reindex怎么用?Python Database.reindex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CodernityDB.database.Database的用法示例。


在下文中一共展示了Database.reindex方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: SQLAlchemy

# 需要导入模块: from CodernityDB.database import Database [as 别名]
# 或者: from CodernityDB.database.Database import reindex [as 别名]
# -*- coding: utf-8 -*-
from lite_mms.basemain import app
app.config["SQLALCHEMY_DATABASE_URI"] = app.config["DBSTR"]
from flask.ext.sqlalchemy import SQLAlchemy
db = SQLAlchemy(app)

from CodernityDB.database import Database

codernity_db = Database(app.config['CODERNITY_DATABASE_PATH'])
if codernity_db.exists():
    codernity_db.open()
    codernity_db.reindex()
else:
    codernity_db.create()

app.config["MONGODB_DB"] = "localhost"

def init_db():
    # 必须要import models, 否则不会建立表
    from lite_mms import models
    db.create_all()

开发者ID:PuZheng,项目名称:lite-mms,代码行数:23,代码来源:database.py

示例2: __init__

# 需要导入模块: from CodernityDB.database import Database [as 别名]
# 或者: from CodernityDB.database.Database import reindex [as 别名]
    def __init__(self, *args, **kwargs):
        kwargs['key_format'] = 'f'
        super(LogIndex, self).__init__(*args, **kwargs)

    def make_key(self, key):
        return key
    
    def make_key_value(self, data):
        a_val = data.get('date')
        if a_val is not None:
            return a_val, None

db = Database('log')
if db.exists():
    db.open()
    db.reindex()
else:
    db.create()
    index = LogIndex(db.path, 'logidx')
    db.add_index(index)

class Log():
    def __init__(self):
        self._db = db

    def get(self, count):
        cnt = self._db.count(self._db.all, 'logidx')
        records = self._db.all("logidx", offset = cnt - int(count) if cnt - int(count) > 0 else 0, with_doc=True)
        result =  [dict(date = r["doc"]["date"], localDate = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(r["doc"]["date"])), client = r["doc"]["client"], message = r["doc"]["message"]) for r in records]
        return reversed(result)
开发者ID:Yustos,项目名称:FeedFilter,代码行数:32,代码来源:Log.py


注:本文中的CodernityDB.database.Database.reindex方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。