19 $db = $environment->getResource(Setup\Environment::RESOURCE_DATABASE);
20 $client_ini = $environment->getResource(Setup\Environment::RESOURCE_CLIENT_INI);
22 if (!$client_ini || !$db) {
31 $GLOBALS[
"DIC"] =
new DI\Container();
35 $settings->readFromIniFile($client_ini);
37 $service_type = (int) $settings->getService();
39 $storage->storeConfigText(
42 "The backend that is used for the ILIAS cache." 44 $storage->storeConfigBool(
46 (
bool) $settings->isActive()
54 $server_collection = [];
56 $active =
new Setup\Metrics\Metric(
57 Setup\Metrics\Metric::STABILITY_CONFIG,
58 Setup\Metrics\Metric::TYPE_BOOL,
61 $host =
new Setup\Metrics\Metric(
62 Setup\Metrics\Metric::STABILITY_CONFIG,
63 Setup\Metrics\Metric::TYPE_TEXT,
66 $port =
new Setup\Metrics\Metric(
67 Setup\Metrics\Metric::STABILITY_CONFIG,
68 Setup\Metrics\Metric::TYPE_TEXT,
71 $weight =
new Setup\Metrics\Metric(
72 Setup\Metrics\Metric::STABILITY_CONFIG,
73 Setup\Metrics\Metric::TYPE_TEXT,
77 $server_collection[] =
new Setup\Metrics\Metric(
78 Setup\Metrics\Metric::STABILITY_CONFIG,
79 Setup\Metrics\Metric::TYPE_COLLECTION,
86 "Configured memcached node." 90 $nodes =
new Setup\Metrics\Metric(
91 Setup\Metrics\Metric::STABILITY_CONFIG,
92 Setup\Metrics\Metric::TYPE_COLLECTION,
94 "Collection of configured memcached nodes." 96 $storage->store(
"memcached_nodes", $nodes);
99 $component_activation = [];
101 $component_activation[$component] =
new Setup\Metrics\Metric(
102 Setup\Metrics\Metric::STABILITY_CONFIG,
103 Setup\Metrics\Metric::TYPE_BOOL,
104 $settings->isComponentActivated($component)
107 $component_activation =
new Setup\Metrics\Metric(
108 Setup\Metrics\Metric::STABILITY_CONFIG,
109 Setup\Metrics\Metric::TYPE_COLLECTION,
110 $component_activation,
111 "Which components are activated to use caching?" 115 $component_activation
collectFrom(Setup\Environment $environment, Setup\Metrics\Storage $storage)
Class ilGlobalCacheSettings.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAvailableComponents()
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTentativePreconditions(Setup\Environment $environment)
An environment holds resources to be used in the setup process.
static lookupServiceConfigName(int $service_type)