stable
Clone or download
Read-only
Merge 'gerrit #13014' into stable/master
* commit 'bf3888e878': request #12475 [Perf] cache hooks and plugins in a more aggressive manner
Modified Files
Name | ||||
---|---|---|---|---|
M | Makefile | +5 | −0 | Go to diff View file |
A | plugins/crosstracker/tests/rest/CrossTrackerDataBuilder.php | +67 | −0 | Go to diff View file |
A | plugins/crosstracker/tests/rest/init_test_data.php | +25 | −0 | Go to diff View file |
M | plugins/git/bin/convert_gitolite_full_logs.php | +1 | −0 | Go to diff View file |
M | plugins/pullrequest/tests/rest/DatabaseInitialization.class.php | +2 | −0 | Go to diff View file |
M | plugins/svn/bin/migrate_to_plugin.php | +1 | −0 | Go to diff View file |
M | plugins/svn/bin/pre-revprop-change.php | +3 | −2 | Go to diff View file |
M | plugins/svn/bin/svn_post_commit.php | +3 | −1 | Go to diff View file |
M | plugins/svn/bin/svn_pre_commit.php | +3 | −2 | Go to diff View file |
M | src/common/collection/Map.class.php | +1 | −1 | Go to diff View file |
M | src/common/event/EventManager.class.php | +21 | −5 | Go to diff View file |
M | src/common/include/SiteCache.php | +1 | −12 | Go to diff View file |
A | src/common/plugin/EventPluginCache.php | +49 | −0 | Go to diff View file |
A | src/common/plugin/EventPluginCacheInfo.php | +49 | −0 | Go to diff View file |
M | src/common/plugin/Plugin.class.php | +4 | −1 | Go to diff View file |
A | src/common/plugin/PluginCacheInfo.php | +45 | −0 | Go to diff View file |
M | src/common/plugin/PluginFactory.class.php | +1 | −1 | Go to diff View file |
A | src/common/plugin/PluginLoader.php | +128 | −0 | Go to diff View file |
M | src/common/plugin/PluginManager.class.php | +35 | −8 | Go to diff View file |
A | src/common/plugin/SerializedPluginProxy.php | +115 | −0 | Go to diff View file |
A | tests/phpunit/common/event/EventManagerTest.php | +46 | −0 | Go to diff View file |
M | tests/rest/bin/init_data.php | +0 | −1 | Go to diff View file |
M | tests/rest/lib/TestDataBuilder.php | +3 | −35 | Go to diff View file |
M | tests/simpletest/common/plugin/PluginManagerTest.php | +97 | −4 | Go to diff View file |
A | tests/simpletest/common/plugin/_fixtures/DatAnotherPlugin.php | +57 | −0 | Go to diff View file |
M | tests/simpletest/common/plugin/_fixtures/DatPlugin.php | +18 | −4 | Go to diff View file |