• 1Installation
  • 2Preliminary Knowledge
  • 3Cache Management
  • 4Config Service
  • 5Config Handlers
  • 6Read Configuration
  • 7Write Configuration
  • 8Integrations

Config.apex

  • Docs
  • Tutorials
Getting started with Config.apex

Write Configuration

We can write configurations too, using the config service.

configService.write('/System/version', new Map{
    'value': '1.0.0'
});
// equivalent to 
configService.put('/System/version', new Map{
    'value': '1.0.0'
});

We can pass in both params from the request config url and the data of Map.

Done