I have some parameters that I want to be able to control without making an update. There are 2 options:
- Remote config -Fetching them with the default cache of 12 hours.
- Database - Making a config object and fetch it while initializing the app.
If I use remote config and change some parameter, there could be a condition that some of my users will have to wait 12 hours for the parameter change to take effect. Some of my parameters cannot be incorrect for such a long time, Does it mean that those parameters should be stored in database config object and the remote config is only for the parameters that are tolerable to stay incorrect for 12 hours?