-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Don't try to parse strings that don't contain blocks #3903
Merged
Merged
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
pento
added
[Type] Performance
Related to performance efforts
[Feature] Parsing
Related to efforts to improving the parsing of a string of data and converting it into a different f
[Type] Bug
An existing feature does not function as intended
labels
Dec 11, 2017
mtias
reviewed
Dec 11, 2017
lib/blocks.php
Outdated
* If there are no blocks in the content, return a single block, rather | ||
* than wasting time trying to parse the string. | ||
*/ | ||
if ( ! preg_match( '/<!--\s*(wp:|more|noteaser)/', $content ) ) { |
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.
Can we use gutenberg_content_has_blocks()
here?
youknowriad
force-pushed
the
fix/3799-parse-oom
branch
from
December 11, 2017 14:49
227aaf8
to
357f409
Compare
This was referenced Jan 30, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[Feature] Parsing
Related to efforts to improving the parsing of a string of data and converting it into a different f
[Type] Bug
An existing feature does not function as intended
[Type] Performance
Related to performance efforts
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.
Description
As reported in #3799, parsing long strings that don't contain blocks cause significantly increased memory usage.
As ~100% of posts published prior to the release of WordPresss 5.0 fit this description, it's worth adding a special case to bail early, before even trying to parse the unparseable.
How Has This Been Tested?
Creating a post in the classic editor with this sample data, viewing the post, and observing memory usage under different conditions:
With Gutenberg disabled: 4.5MB, ~0.1s
With Gutenberg
master
enabled: 46.1MB, ~0.3sWith this PR enabled: 4.6MB, ~0.1s
Checklist: