Nodejs SDK getMulti with replica

Through the couchnode SDK I can see that I can use geReplica in order to get a single key from the replica DB, is there a similar way to do this for getMulti. It seems that if I send an options object with replica true then it is disregraded.
Sample
bucket.getMulti(“my_key”, {replica:true}, callback);

Hey @noamaradjunk,

The getMulti operation is actually more of a backwards-compatibility method for previous versions of our SDK. You can simply perform multiple concurrent, but individual getReplica operations (performance is tuned for this).

Cheers, Brett

I have a followup question.
Is there a way to have the SDK use replica automatically when a connection error or timeout occurs?