b8b4df5425
Otherwise every time the AppStore was opened a lot of connections to the AppStore server were made which resulted in a terrible performance. This changeset will cache the response for a sensible time so that only the first request will be somewhat slow. Performance changes: - Loading a category took previously more than 3 seconds on my machine. Now for every follow-up request it takes less than 200ms, resulting in a performance gain of 1950% - Loading the category list took previously about 750ms - now it takes 154ms, a total performance gain of 395%
17 lines
593 B
PHP
17 lines
593 B
PHP
<?php
|
|
|
|
OC_JSON::checkAdminUser();
|
|
OCP\JSON::callCheck();
|
|
|
|
$groups = isset($_POST['groups']) ? $_POST['groups'] : null;
|
|
|
|
try {
|
|
OC_App::enable(OC_App::cleanAppId($_POST['appid']), $groups);
|
|
// FIXME: Clear the cache - move that into some sane helper method
|
|
\OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0');
|
|
\OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1');
|
|
OC_JSON::success();
|
|
} catch (Exception $e) {
|
|
OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
|
|
OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
|
|
}
|