Mongoose Query.prototype.wtimeout()方法

Mongoose Query.prototype.wtimeout()方法

Mongoose Query API.prototype.wtimeout() method 是Mongoose API中的Query对象上使用的方法。使用此方法,我们可以设置操作完成执行所需的特定时间。通过使用此方法,我们可以设置特定方法完成其写操作到指定数量的副本集所需的最长时间,如果超过此时间,则操作将失败。让我们通过一个示例来了解 wtimeout() 方法。

可以在以下方法上访问此选项或wtimeout()方法:

  • deleteOne()
  • deleteMany()
  • findOneAndDelete()
  • findOneAndReplace()
  • findOneAndUpdate()
  • remove()
  • update()
  • updateOne()
  • updateMany()

语法:

query.deleteOne(...).w(...).wtimeout( <time/ms> );

参数: 此方法接受一个参数,如下所述:

  • ms: 用于指定方法执行操作所需的最长时间。时间以毫秒为单位。

返回值: 此方法返回查询对象。

设置Node.js应用程序:

步骤1: 使用以下命令创建一个Node.js应用程序:

npm init

步骤2: 在创建NodeJS应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 项目结构将如下所示:

Mongoose Query.prototype.wtimeout()方法

数据库结构:

数据库结构将如下所示,下面的文档存在于集合中。

Mongoose Query.prototype.wtimeout()方法

示例1: 在此示例中,我们通过为指定数量的MongoDB服务器提供最长时间为2秒来完成更新操作,展示了wtimeout()方法的功能。

// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
const URI = "mongodb://localhost:27017/geeksforgeeks"; 
  
const connectionObject = mongoose.createConnection(URI, { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const Customer = connectionObject.model( 
    "Customer", 
    new mongoose.Schema({ 
        name: String, 
        address: String, 
        orderNumber: Number, 
    }) 
); 
  
const query = Customer.findOneAndUpdate( 
    { _id: "639ede899fdf57759087a655" }, 
    { orderNumber: 0 } 
); 
  
query.w(2).wtimeout(2000); 
query.then(result => { 
    console.log(result); 
}).catch(error => { 
    console.log(error); 
})

开始运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

使用Robo3T GUI工具的数据库的图形用户界面表示:

Mongoose Query.prototype.wtimeout()方法

示例2: 在这个示例中,我们通过找到并删除集合中的文档对象来演示wtimeout()方法的功能。

文件名:app.js

// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
const URI = "mongodb://localhost:27017/geeksforgeeks"; 
  
const connectionObject = mongoose.createConnection(URI, { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const Customer = connectionObject.model( 
    "Customer", 
    new mongoose.Schema({ 
        name: String, 
        address: String, 
        orderNumber: Number, 
    }) 
); 
  
const query = Customer.findOneAndDelete( 
    { _id: "63b658a5876922405349a40d" } 
); 
  
query.w("majority").wtimeout(500); 
query.exec((error, result) => { 
    if (error) { 
        console.log("Error -", error); 
    } else { 
        console.log("Result -", result); 
    } 
})

运行程序的步骤: 从项目的根目录中执行以下命令来运行应用程序:

node app.js

输出:

使用Robo3T GUI工具的数据库的GUI表示:

Mongoose Query.prototype.wtimeout()方法

参考: https://mongoosejs.com/docs/api/query.html#query_Query-wtimeout

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程