Getting started with Config.apex
Config Service
Config service in Config.apex works as a single entry point to access the configurations. It is backed by CacheStore to provide high performance. Below is how we create an instance of the config service.
CacheStore store = new CacheStore('PARTITION');
Config configService = new Config(store);