如何在Python中使用aiohttp或asyncio创建并行循环?

我想使用rethinkdb .changes()功能向用户推送一些消息.该消息应在没有用户任何请求的情况下发送.

我将rethinkdb与aiohttp和websockets一起使用.这个怎么运作:

>用户发送消息
>服务器将其放入rethinkdb
>我需要什么:另一个循环使用rethinkdb .changes函数将更新发送给已连接的用户

这是我启动应用程序的方式:

@asyncio.coroutine
def init(loop):
    app = Application(loop=loop)
    app['sockets'] = []
    app['susers'] = []
    app.router.add_route('GET', '/', wshandler)
    handler = app.make_handler()
    srv = yield from loop.create_server(handler, '127.0.0.1', 9080)
    print("Server started at http://127.0.0.1:9080")
    return app, srv, handler

在wshandler中,我有一个循环,用于处理传入的消息:

@asyncio.coroutine
def wshandler(request):
    resp = WebSocketResponse()
    if not resp.can_prepare(request):
        return Response(
            body=bytes(json.dumps({"error_code": 401}), 'utf-8'),
            content_type='application/json'
        )
    yield from resp.prepare(request)
    request.app['sockets'].append(resp)
    print('Someone connected')
    while True:
        msg = yield from resp.receive()
        if msg.tp == MsgType.text:
            runCommand(msg, resp, request)
        else:
            break
    request.app['sockets'].remove(resp)
    print('Someone disconnected.')
    return resp

如何创建第二个循环,将消息发送到同一打开的连接池?如何使其成为线程安全的?

解决方法:

一般来说,在运行事件循环时,应尽量避免使用线程.

不幸的是,rethinkdb不支持现成的asyncio,但确实支持Tornado & Twisted框架.
因此,您可以bridge Tornado& asyncio并使其无需使用线程即可工作.

编辑:

正如安德鲁指出的那样,rethinkdb确实支持异步.在2.1.0之后,您可以执行以下操作:

rethinkdb.set_loop_type("asyncio")

然后在您的Web处理程序中:

res = await rethinkdb.table(tbl).changes().run(connection)
while await res.fetch_next():
   ...
上一篇:LOJ2433. 「ZJOI2018」线图


下一篇:day50-时中