-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Optimize load resources operations #4505
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
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Build success. https://ci.codenvycorp.com/job/che-pullrequests-build/2248/ |
vparfonov
approved these changes
Mar 22, 2017
Build success. https://ci.codenvycorp.com/job/che-pullrequests-build/2263/ |
Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Build success. https://ci.codenvycorp.com/job/che-pullrequests-build/2271/ |
JPinkney
pushed a commit
to JPinkney/che
that referenced
this pull request
Aug 17, 2017
* Reveal only last copied or moved resource Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code optimization Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Update code base to java 8 Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code optiomizations Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code optimizations Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code optimizations Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code refactorings Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code cleanup Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Reformat code Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Use lambdas Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Extract duplicated code into standalone method Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code optimization Signed-off-by: Vladyslav Zhukovskii <[email protected]> * Code refactoring Signed-off-by: Vladyslav Zhukovskii <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
kind/bug
Outline of a bug - must adhere to the bug report template.
severity/P1
Has a major impact to usage or development of the system.
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.
This changes proposal provides optimized mechanism for operating with resources and proposes several fixes, especially:
Changed mechanism of copying/moving files
Previous behavior performed revealing each copied/moved resource in destination path.
New behavior performs revealing only last operated resource in destination path.
Changes in retrieving list of resources from the server
Previous behavior of method
org.eclipse.che.ide.resources.impl.ResourceManager#findResource
calculated entire depth to resource which should be loaded and loaded entire tree with given depth.New behavior performs only retrieving a resource only by given path.
Using jdk 8 features
Anonymous classes were replaced with lambdas for code readability.
What issues does this PR fix or reference?
#3891
#4205
#3847
Changelog
Optimize load resources operations
Release Notes
N/A
Docs PR
N/A