c# - .NET external configuration server -
i developing web application contain quite few hosts. have seen external configuration storages been used in java e.g. spring cloud config server.
are there non-custom alternatives in .net? currently, looking @ msdn external configuration store pattern, , implementing custom , re-using of code page.
essentially, each node have initial configuration file (json) containing e.g. node name , url db find other configuration parameters. have separate service can queried other services return configuration data. caches config data locally.
there concerns this:
- how performs, i.e. configuration service may need scaled on multiple instances,
- config data needs cached, , may need distributed cache config services have unified view of cached config data,
- this custom implementation , need maintenance,
- how config data changed, e.g. through custom admin ui interface crud operations?
Comments
Post a Comment