mongo shell,如何将查询定向到辅助

mongo shell, how do I direct queries to the secondary

我是 mongo 的新手,我想将一些查询从 mongo shell.

定向到辅助服务器

我已阅读说明设置阅读首选项的文档。

具体来说

In the mongo shell, the readPref() cursor method provides access to read preferences.

我已经阅读了有关 readPref 游标方法的文档(如果您有兴趣,请点击此处:http://docs.mongodb.org/manual/reference/method/cursor.readPref/#cursor.readPref)但是我无法让它工作。

mongos> cursor.readPref(secondary);
2015-10-15T10:03:47.480+0000 E QUERY    ReferenceError: cursor is not defined
    at (shell):1:1

readPref(secondary);
2015-10-15T10:04:16.224+0000 E QUERY    ReferenceError: secondary is not defined
    at (shell):1:10

mongos> readPref('secondary');
2015-10-15T10:04:37.848+0000 E QUERY    ReferenceError: readPref is not defined
    at (shell):1:1

我已经尝试了所有我能想到的组合,但总是得到 ReferenceError。

我缺少/不理解什么?

Blakes Seven 刚刚提供了答案(谢谢)。
你需要去这里: http://docs.mongodb.org/manual/reference/method/Mongo.setReadPref/