我正在玩aiohttp + aiomysql。我想在请求调用之间共享相同的连接池实例。
所以我创建了一个全局var并在corouting call中预先设置了一次。
我的代码:
import asyncio
from aiohttp import web
from aiohttp_session import get_session, session_middleware
from aiohttp_session.cookie_storage import EncryptedCookieStorage
from aiohttp_session import SimpleCookieStorage
#from mysql_pool import POOL
from aiomysql import create_pool
M_POOL = None
async def get_pool(loop):
global M_POOL
if M_POOL: return M_POOL
M_POOL = await create_pool(host='127.0.0.1', port=3306, user='user', password='user', db='test', loop=loop)
return M_POOL
async def query(request):
loop = asyncio.get_event_loop()
pool = await get_pool(loop)
print(id(pool))
async with pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute("SELECT 42;")
value = await cur.fetchone()
print(value)
return web.Response(body=str.encode(str(value)))
app = web.Application(middlewares=[session_middleware(SimpleCookieStorage())])
app.router.add_route('GET', '/query', query)
web.run_app(app)
这样做是否方便,或者可能更好?
答案 0 :(得分:1)
答案 1 :(得分:0)
但是您已经为访问 request
对象的情况提供了演示。
使用aiohttp时遇到同样的问题。在我的申请中我
完成部分模块:
一个用于服务器功能,一个用于客户端(爬虫)。
所以在服务器部分没问题,我可以用request.app['dbpool']
但是在爬虫部分我想使用数据库连接,和 我无法看到另一个池连接创建的原因。