Suppose I've got very big collection and I select it by
MongoCursor<MyClass> answer = myCollection.find().as(MyClass.class);
Will Jongo/Mongo load whole collection at the first call or incrementally load data while I will iterate over answer
?