Given that MongoDB query results are returned in the order that they are found, which "may coincide with insertion order (but isn't guaranteed to be) or the order of the index(es) used":
Does this mean that the order of the results could change after using Pymongo's rewind()
function?
It seems like rewind()
performs another database query, right?