문제

How to call SlaveOK on query in Mongoose?

for example, I have this:

SiteModel.find({}, function(err, docs) { .... } );

Should I do this???

SiteModel.slaveOK().find({}, function(err,docs) { ... } );
도움이 되었습니까?

해결책

Here's the official example from the Mongoose.js website:

Model
.where('age').gte(25)
.where('tags').in(['movie', 'music', 'art'])
.select('name', 'age', 'tags')
.skip(20)
.limit(10)
.asc('age')
.slaveOk()
.hint({ age: 1, name: 1 })
.run(callback);

So I guess your example above would probably work, but do it like so:

Model.find(conditions).slaveOk().run(callback);

다른 팁

mongoose.Query.slaveOk has been deprecated in favour of mongoose.Query.read(readPreference). docs

So, to iterate on the example above:

Model
.where('age').gte(25)
.where('tags').in(['movie', 'music', 'art'])
.select('name', 'age', 'tags')
.skip(20)
.limit(10)
.asc('age')
.read('secondaryPreferred')
.hint({ age: 1, name: 1 })
.run(callback);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top