Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed; remove query batchSize option default
Bug in MongoDB breaks result sets: SERVER-5374 Originally added to make streaming large result sets behave nicely (otherwise huge 100000+ doc sets may be returned when not specified). If you are streaming large query results and experience bad performance, you may want to set the batchSize option: query.batchSize(1000) Keep in mind that at this time (mongo 2.2) if the query also uses a sort(), you will need to add an index to that field to ensure all results are returned. https://jira.mongodb.org/browse/SERVER-5374 http://stackoverflow.com/questions/12643195/mongoose-limiting-query-to-1000-results-when-i-want-more-all-migrating-from-2-6
- Loading branch information