Improve performance of protection checks under Paper - #275
Open
Phoenix616 wants to merge 1 commit into
Open
Conversation
…a snapshot for each block
Owner
|
Good find, seems like a reasonable change - I don't think we use the snapshots anywhere. Do you know if this also works on Spigot, or is it Paper only? |
Contributor
Author
|
This is a Paper-only api addition. |
Owner
|
Thanks that's kind of what I thought, but I didn't have time to check. There's still a bit to figure out b/w the Spigot and Paper implementation going forwards but now that we have them essentially split after hard fork this should make sense to do. In the past it was mostly that no one bothered to make it cross compatible. |
This file contains hidden or 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
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.
Improve performance of protection checks under Paper by not creating a snapshot for each block.
Previously this could cause lag spikes if something (like hoppers or other plugins which move items) would check lots of blocks for protections at the same time. I tried to check the logic which uses those objects/methods whether they actually would require a snapshot and I couldn't find any.