Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Express.js 或任何 Web 应用程序中管理OrientDB连接的推荐方法是什么?每个请求的连接?将使用oriento Node.js 驱动程序
如果你使用 Oriento,你可以尝试连接池,根据PR #7,你可以这样设置:
var server = Oriento({ user: 'root', password: 'foo', pool: { max: 10 // use a maximum of 10 sockets in the pool } });
请记住,由于 orientdb 中的线程安全问题 [...](参考),连接池配置在某些时候从 Oriento 的 README 中隐藏。您可能需要在使用它之前清除它。