反思数据库:"Connection closed"
Rethinkdb: "Connection closed"
我将 rethinkdb 与本地托管在 Windows 机器上的烧瓶 (python 3) 一起使用。
问题是连接非常频繁地被关闭。
错误如下所示:
rethinkdb.errors.ReqlDriverError: Connection is closed.
在 python 中,我这样定义连接:
conn = r.connect("localhost", 28015).repl()
我的查询示例:
r.db('izmjene').table("users").get_all(
email, index="email").count().run(conn)
我将 rethinkdb 与本地托管在 Windows 机器上的烧瓶 (python 3) 一起使用。 问题是连接非常频繁地被关闭。
错误如下所示:
rethinkdb.errors.ReqlDriverError: Connection is closed.
在 python 中,我这样定义连接:
conn = r.connect("localhost", 28015).repl()
我的查询示例:
r.db('izmjene').table("users").get_all(
email, index="email").count().run(conn)