发布于 2015-09-14 14:53:49 | 147 次阅读 | 评论: 0 | 来源: 网络整理
For the current session, this command permits read operations from non-master (i.e. slave or secondary) instances. Practically, use this method in the following form:
db.getMongo().setSlaveOk()
Indicates that “eventually consistent” read operations are acceptable for the current application. This function provides the same functionality as rs.slaveOk().
See the readPref() method for more fine-grained control over read preference in the mongo shell.