Join us at MongoDB.local London on 7 May to unlock new possibilities for your data. Use WEB50 to save 50%.
Register now >
Docs Menu
Docs Home
/ /
Connection Methods

Mongo.getReadPrefMode()

Mongo.getReadPrefMode()
Returns:The current read preference mode for the Mongo() connection object.

See Read Preference for an introduction to read preferences in MongoDB. Use getReadPrefMode() to return the current read preference mode, as in the following example:

db.getMongo().getReadPrefMode()

Use the following operation to return and print the current read preference mode:

print(db.getMongo().getReadPrefMode());

This operation will return one of the following read preference modes:

Tip

Back

Mongo.getDB()