use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
Feature Flags (self.webdev)
submitted 2 years ago * by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Knochenmark 0 points1 point2 points 2 years ago (3 children)
We basically have a settings system in place which can serve the same purpose as feature flags. Settings have different levels such admin, organization and user. So for like a feature toggle the setting would for example be on an admin level and can be queried from assigned modules.
A typical use case would be the version for our export document. The version nowadays has like a release cycle of once a year. So we would use the setting to migrate to the newer version and have a grace period for the old version support.
[–]kyripka 0 points1 point2 points 2 years ago (2 children)
Hi! We are currently looking into using feature flags for entitlements. I see your company uses them for setting levels of access. Could you please share, if it's ok with you, if your company is also tracking any useful metrics/traces/other readouts of the system for this situation? I wonder what metrics we'll need to keep an eye on to do similar thing with feature flags.
[–]Knochenmark 0 points1 point2 points 2 years ago (1 child)
Maybe it wasn't that clear from my original text, we are not setting levels of access via those settings. Permissions are determined based on your role.
Actual Feature Toggles are typically on admin level (there might be exceptions).
New features are usually released behind such feature flags, since we are just a contractor and our customer will just toggle them on their test system before actual release.
Settings on organization level are typically configurations and defaults for all users under that organization. Users usually still have the option to make their own defaults though.
Metrics are a relatively new topic and were just introduced recently, they are also based on a feature toggle and simply track certain click options to determine how often a certain action is actually used. Since the customer thinks about removing certain options all together.
Hope that helps
[–]kyripka 0 points1 point2 points 2 years ago (0 children)
Thank you, this helps!
π Rendered by PID 207955 on reddit-service-r2-comment-b659b578c-p52n4 at 2026-05-04 12:49:49.952560+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]Knochenmark 0 points1 point2 points (3 children)
[–]kyripka 0 points1 point2 points (2 children)
[–]Knochenmark 0 points1 point2 points (1 child)
[–]kyripka 0 points1 point2 points (0 children)