我正在使用mongoose v3.8.7和mongoDB v2.6.1。我编写的代码使用mongoDB连接池和100个连接。我使用以下代码来更新集合:
model.update( findquery, updatequery, { upsert: true }, function(err, numberAffected, rawResponse) {
...
});
返回的rawResponse如下所示:
{ ok: true, n: 1, updatedExisting: true }
以上回复不包含connectionId。如何在代码中获取负责更新的连接ID?