-
-
Notifications
You must be signed in to change notification settings - Fork 87
feat: flush once #873
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
Merged
Merged
feat: flush once #873
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nikophil
commented
Apr 14, 2025
nikophil
commented
Apr 14, 2025
nikophil
commented
Apr 14, 2025
374c7ed
to
fcce354
Compare
fcce354
to
4e907b3
Compare
4e907b3
to
8be0f57
Compare
kbond
approved these changes
Apr 15, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This'll be great! Are you still working on some edge cases?
@kbond yes, I still got some failures in my CI, I'll tackle them soon(ish) 😁 |
I'm merging this PR in I'll also surely add make it optional/configurable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
"flush once" is back 😁
and with very promising performances:
(I really like that we can rely on real numbers for this!)
As I said already said here, it was a fluke that this kind of code did work before:
OR
I'm not totally sure of the magic that was involved, but for the second example, before "flush once"
$category->getContacts()
was aPersistentCollection
withinitialized: false
, and with "flush once" it became an emptyPersistentCollection
withinitialized: true
Hence all the modifications around this, in
PersistentFactoryCollection::normalizeObject()