0

在 Express.js 或任何 Web 应用程序中管理OrientDB连接的推荐方法是什么?每个请求的连接?将使用oriento Node.js 驱动程序

4

1 回答 1

0

如果你使用 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 中隐藏。您可能需要在使用它之前清除它。

于 2015-05-29T09:41:52.273 回答