Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove eager cursor functionality without replacement #1902

Merged
merged 1 commit into from
Nov 27, 2018

Conversation

alcaeus
Copy link
Member

@alcaeus alcaeus commented Nov 26, 2018

Q A
Type improvement
BC Break yes
Fixed issues

Summary

After the cursor refactoring which was done along with the driver switch, we no longer respected the eagerCursor flag in the query options as it wasn't really necessary. Eager cursor were introduced for two reasons:

  • The legacy driver allowed iterating a cursor multiple times, but would re-execute the query multiple times. An eager cursor prevented this. Since the new driver forbids rewinding a cursor, we use a CachingIterator to cache results on the first iteration and use that result cache on subsequent operations
  • Reference priming required the use of an eager cursor to prevent different results on the first iteration by the user (which was the second on a cursor due to priming). Again, with the CachingIterator this is no longer necessary
  • The eager cursor fetched all data at the beginning of the iteration without talking to the MongoDB server afterwards. I don't think this is a use case anymore since the connection to MongoDB has gotten way more stable than back in the days. Users that want to avoid issues during iteration due to connection problems can force an initialisation of the returned iterator at the beginning of their use.

@alcaeus alcaeus added this to the 2.0.0 milestone Nov 26, 2018
@alcaeus alcaeus self-assigned this Nov 26, 2018
@alcaeus alcaeus requested a review from malarzm November 26, 2018 06:17
@malarzm
Copy link
Member

malarzm commented Nov 27, 2018

🎉

@malarzm malarzm merged commit f65b87c into doctrine:master Nov 27, 2018
@alcaeus alcaeus deleted the remove-eager-helpers branch November 28, 2018 06:21
@alcaeus alcaeus added the Task label Dec 23, 2018
alcaeus added a commit to alcaeus/mongodb-odm that referenced this pull request Jan 11, 2019
alcaeus added a commit to alcaeus/mongodb-odm that referenced this pull request Jan 11, 2019
alcaeus added a commit to alcaeus/mongodb-odm that referenced this pull request Jan 14, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants