在 .NET 中有效使用功能切换的工具和技术

发布于 2024-11-29 00:39:56 字数 330 浏览 1 评论 0原文

我读过很多关于功能切换的内容,但没有使用它们的实际经验。人们推荐哪些工具和技术来有效管理功能切换?

我想最简单的方法是将切换作为 true/false 值存储在 web.config 文件中的 appSettings 中,但这听起来不是一个特别好的方法。

理想情况下,我希望任何管理功能切换的方法都能够:

  • 在删除时标记切换的任何使用。例如,编译错误
  • 突出显示所有旧的切换。即功能发布后仍然存在的切换

I have read a lot about feature toggles but have no practical experience of using them. What tools and techniques do people recommend for effective management of feature toggles?

I imagine the simplest way would be to store toggles as true/false values in the web.config file as appSettings but this doesn't sound a particularly good method.

Ideally I would like any method of managing feature toggles to:

  • Flag any uses of the toggle on removal. E.g. A compilation error
  • Highlight any old toggles. I.e. A toggle that is still in place after the feature has been released

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半透明的墙 2024-12-06 00:39:56

一位同事的建议是将它们存储在 .settings 文件中。这样做的优点是,如果您删除一个切换,您会在使用该切换的任何地方出现编译器错误,因此您可以确定它已从代码中完全删除。

也可以使用一些简单的技术 进行功能切换。它并不大,也不聪明,但它很简单,而且很有效。

更新

自从问这个问题以来,我在使用功能切换方面有了更多的经验。我看过一些可用的开源工具并撰写了有关另一个简单的数据库驱动切换机制 我在工作中使用过。

One suggestion from a colleague is to store them in a .settings file. The advantage of this is that if you delete a toggle you get compiler errors anywhere the toggle has been used so you can be certain it's been completely removed from the code.

It's also possible to use some simple techniques to do feature toggling. It's not big or clever, but it's straight forward and it works.

UPDATE

Since asking this question I've had some more experience using feature toggles. I've looked at a few of the open source tools available and written about another simple database driven toggling mechanism I've used at work.

べ映画 2024-12-06 00:39:56

我只需使用一个具有许多布尔属性的类,并反序列化配置文件中的值。

I'd just use a class with a number of boolean properties and deserialize the values from a config file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文