Example #1
0
 /**
  * Load configuration from external cache into memory
  */
 public static function loadConfigCacheInMemory()
 {
     if (!is_null(self::$s_config_cache)) {
         return;
     }
     if (ExternalCache::contains('ConfigurationCache')) {
         self::$s_config_cache = ExternalCache::fetch('ConfigurationCache');
     }
 }