当要更改进程时,如果游标超出范围以管理资源/连接等,是否需要清理或关闭游标。??
socketIo.on('connection', function(socket){
r.table('users').changes().run(conn, function(err, cursor) {
throw Error('some error')
// do I need to wrap this in some sort of try catch block and call cusor.close()?
})
});
rethinkdb驱动程序在超出范围时清理连接和资源有多聪明?