代码拉取完成,页面将自动刷新
"""
初始化app的运行环境
- 多核心环境设计有竞争的资源时,会有线程冲突
"""
import asyncio
import motor
from config import mongodb_cfg
from dtlib.mongo.utils import set_mongo_ttl_index
async def init_mongo():
"""
不能在多核心状态进行设置
:return:
"""
mongo_conn = motor.MotorClient(
host=mongodb_cfg.host,
port=mongodb_cfg.port,
)
db = mongo_conn[mongodb_cfg.db_name]
res = await db.authenticate(
mongodb_cfg.user_name,
mongodb_cfg.user_pwd,
)
if res is True:
log_session = mongo_conn.log_session
index_filed_name = 'last_use_time'
ttl_seconds = 60 * 60 * 48 # 2days
await set_mongo_ttl_index(log_session, index_filed_name, ttl_seconds)
print('set session ttl succeed...')
if __name__ == '__main__':
init_loop = asyncio.get_event_loop()
init_loop.run_until_complete(init_mongo())
# init_loop.stop()
print('init app succeed')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。