Feature flags with .NET and Azure App Configuration

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ม.ค. 2025

ความคิดเห็น • 9

  • @waltertudorin1972
    @waltertudorin1972 3 ปีที่แล้ว +2

    Is there a way to manage Azure Feature Flags through a Rest API?

  • @aigp6682
    @aigp6682 ปีที่แล้ว

    Can this be used with asp net 4.8?

  • @sanraw54321
    @sanraw54321 3 ปีที่แล้ว

    App azure configuration provides a mechanism for dynamic configuration [ConfigureRefresh] where configuration can be changed on a fly and the changed value is available to the server. How does this differs from the Feature Flag which seems like to be serving the same purpose , or if there is something extra which it provides us?. Thanks in advance.

    • @Pa1j-2608
      @Pa1j-2608 3 ปีที่แล้ว

      Feature flag is different from App Configuration. Latter is the centralized app config managment. Feature flags allows us to turn on/off features via configuration. Changing app configs usually needs restarting the app. but with Azure App Config SDK provides push and pull approach to fetch configs with out restarting it.

  • @zius1975
    @zius1975 11 หลายเดือนก่อน

    You can save you app properties in app secret for local development, and in azure for production!!

  • @UserUnkown5
    @UserUnkown5 3 หลายเดือนก่อน

    fun with flags

  • @dotnetdevni
    @dotnetdevni 3 ปีที่แล้ว

    why the big deal its a bit field

    • @dandoescode
      @dandoescode 3 ปีที่แล้ว +4

      Feature flags are really handy if you want to deploy to production frequently, but don't want to hide some features from your users (e.g. maybe they are still in progress)

    • @Pa1j-2608
      @Pa1j-2608 3 ปีที่แล้ว

      Have a look Feature Management github repo It has injectable interface, decorators for actions/controllers and also MVC Tag helpers. just works straight out of the box. The Features json can be in the appsettings or in the Azure App Configuration. if its in the App Configuration it has Push and Pull model to fetch updated configs with out restart.