【发布时间】:2016-06-22 03:06:10
【问题描述】:
在 python 中使用 BOLT Neo4j 驱动:
driver = GraphDatabase.driver("bolt://localhost",
auth=basic_auth('neo4j', 'password'),
encrypted=True,
trust=TRUST_ON_FIRST_USE)
session = driver.session()
我能否使用 python 命令查看连接是否已打开? 我可以查看打开了多少连接吗?
【问题讨论】:
标签: python neo4j server connection