开发者

Best practices to build a highly configurable software product

开发者 https://www.devze.com 2022-12-25 14:23 出处:网络
I am working on a software product that can substantially change behavior based on the configuration & meta-data supplied.

I am working on a software product that can substantially change behavior based on the configuration & meta-data supplied.

I would like to know best practices to architect / build a highly configurable software product. Considering that there are substantial number of configuration parameters, I'd like to look at something that will not affect the performance before I look at dependenc开发者_Go百科y injection. My platform is .Net ... I seek recommendations on architecture / design and implementations fronts.


Dependency Injection is very unlikely to adversely impact performance. There may be slight (measured in miliseconds) delays when you wire up your initiali dependency graph, but compared to the usual performance culprits of most applications (very often out-of-proccess calls), it's negligible.

If you have a need to recompose a running application without restarting it, you may want to take a look at MEF, but otherwise, common DI patterns should serve you well.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号