Minimongo findOne() times

On the Client

var doc = someCollection.findOne( key ) // Fast
vs
var doc = someCollection.findOne( { _id: key } ) // Slow

Why completion times are different?