标签: express orientdb orientjs oriento
在Express.js或任何Web应用程序中管理OrientDB连接的建议方法是什么?每个请求连接?将使用oriento Node.js驱动程序
答案 0 :(得分:0)
如果您使用的是Oriento,则可以尝试连接池,根据PR #7,您可以这样设置:
var server = Oriento({ user: 'root', password: 'foo', pool: { max: 10 // use a maximum of 10 sockets in the pool } });
请记住,由于在orientdb (reference)中的线程安全性问题,在某些时候连接池配置被隐藏在Oriento的README中。您可能希望在使用之前清除它。