fun_with_flags icon indicating copy to clipboard operation
fun_with_flags copied to clipboard

Feature Flags/Toggles for Elixir

Results 16 fun_with_flags issues
Sort by recently updated
recently updated
newest added

keep track of uses of a given flag using simple metric system + automatically delete/remove flags that haven't been referenced after a stale interval

We use actor-based gates pretty extensively during new feature rollup process and noticed significant slowdowns when flag contains large number of gates (>20k) and is checked multiple times. Current approach...

Hi there! First off, thank you for an outstanding library that's been useful for my team in production for a couple years now. I have one minor feature request, which...

Hi, what do you think about adding timestamp columns to the database table `fun_with_flags_toggles`? We wanted to build some tooling to show which flags have not been used recently, to...

This PR adds instrumentation to FunWithFlags using the `:telemetry` library. This allows users to gain insights into the performance and usage of feature flags in their applications. ## Key changes:...

When a rollout/deployment occurs, the feature flags that are cached in ETS are all flushed (as a new node will start up without the same data). This leads to a...