You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## This PR
- Documentation updates for the multi-provider.
- providing clarity between domain-scoped multiple providers + clients
and mutli-provider
---------
Signed-off-by: Jonathan Norris <[email protected]>
Co-authored-by: Michael Beemer <[email protected]>
Copy file name to clipboardExpand all lines: blog/2023-05-24-spec-0-6-0.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ We are excited to announce the availability of version 0.6.0 of the OpenFeature
19
19
20
20
OpenFeature now supports multiple providers in a single application, allowing teams to scope flag evaluation to a particular flag management system. This makes it easier for developers to mix and match providers based on their needs, all from a unified SDK.
21
21
22
-
> To learn more, please refer to the [OpenFeature Enhancement Proposal](https://github.com/open-feature/ofep/blob/main/OFEP-provider-client-mapping.md) or [spec change](https://openfeature.dev/specification/sections/flag-evaluation/#requirement-113).
22
+
> To learn more, please refer to the [OpenFeature Enhancement Proposal](https://github.com/open-feature/ofep/blob/main/OFEP/provider-client-mapping.md) or [spec change](https://openfeature.dev/specification/sections/flag-evaluation/#requirement-113).
Copy file name to clipboardExpand all lines: docs/reference/concepts/02-provider.mdx
+45-9Lines changed: 45 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,12 +80,42 @@ However, the following items should be used in the package name:
80
80
81
81
An example of what it could look like in NPM: `@openfeature/flagd-provider`
82
82
83
-
#### Multi-provider support
83
+
###Domain scopped providers
84
84
85
-
OpenFeature supports multiple providers in a single application, allowing teams to scope flag evaluation to a particular flag management system.
86
-
This makes it easier for developers to mix and match providers based on their needs, all from a unified SDK.
85
+
OpenFeature supports multiple providers [domain-scoped](https://openfeature.dev/specification/glossary/#domain)to multiple clients in a single application.
86
+
This allows teams to scope flag evaluation to a particular flag management system, making it easier for developers to mix and match providers based on their needs, all from a unified SDK.
87
87
88
-
> To learn more, please refer to the [OpenFeature Enhancement Proposal](https://github.com/open-feature/ofep/blob/main/OFEP-provider-client-mapping.md) or [spec change](https://openfeature.dev/specification/sections/flag-evaluation/#requirement-113).
> To learn more, please refer to the [OpenFeature Enhancement Proposal](https://github.com/open-feature/ofep/blob/main/OFEP/provider-client-mapping.md) or [spec change](https://openfeature.dev/specification/sections/flag-evaluation/#requirement-113).
97
+
98
+
### Multi-Provider support
99
+
100
+
OpenFeature SDKs also support combining multiple providers under a single client using the [Multi-Provider specification](/specification/appendix-a#multi-provider).
101
+
This interface allows your application to transparently interact with multiple providers from different flag management systems through a single interface.
102
+
The logic of how the different providers are accessed through the multi-provider is handled through the assigned [multi-provider strategy](/specification/appendix-a#strategies).
0 commit comments