X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FConfig%2FJitConfiguration.php;h=40aa5d6f6c9418c522b3ef51d42510b9a7628902;hb=6c68b8359dfc7d5c4d87a7d7dc4397778f911f80;hp=e5b7b5e47c9f2a7d2e104f028917ef79cb9cd752;hpb=c293eadb78bf70f7274e3d9f79236fe6c8549bf2;p=friendica.git diff --git a/src/Core/Config/JitConfiguration.php b/src/Core/Config/JitConfiguration.php index e5b7b5e47c..40aa5d6f6c 100644 --- a/src/Core/Config/JitConfiguration.php +++ b/src/Core/Config/JitConfiguration.php @@ -5,10 +5,11 @@ namespace Friendica\Core\Config; use Friendica\Model; /** - * This class is responsible for all system-wide configuration values in Friendica - * There are two types of storage - * - The Config-Files (loaded into the FileCache @see Cache\ConfigCache ) - * - The Config-DB-Table (per Config-DB-model @see Model\Config\Config ) + * This class implements the Just-In-Time configuration, which will cache + * config values in a cache, once they are retrieved. + * + * Default Configuration type. + * Provides the best performance for pages loading few configuration variables. */ class JitConfiguration extends Configuration { @@ -106,16 +107,7 @@ class JitConfiguration extends Configuration } /** - * @brief Deletes the given key from the system configuration. - * - * Removes the configured value from the stored cache in $this->configCache - * (@param string $cat The category of the configuration value - * - * @param string $key The configuration key to delete - * - * @return bool - * @see ConfigCache ) and removes it from the database (@see IConfigAdapter ). - * + * {@inheritDoc} */ public function delete(string $cat, string $key) {