mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
docs: Cleanup 🧹 (#7659)
Removed old references to proxy --------- Co-authored-by: Simon Hornby <simon@getunleash.io>
This commit is contained in:
parent
6e34ae4ada
commit
901f4dd682
@ -10,12 +10,11 @@ Unleash provides official client SDKs for a number of programming language. Addi
|
||||
|
||||
## Official SDKs
|
||||
|
||||
|
||||
<VideoContent videoUrls={["https://www.youtube.com/embed/mCXSAWzdn3I"]}/>
|
||||
|
||||
### Server-side SDKs:
|
||||
|
||||
Server-side clients run on your server and communicate directly with your Unleash instance. We provide these official clients:
|
||||
Server-side clients run on your server and communicate directly with your Unleash instance to evaluate your feature flags in their respective language. We provide these official clients:
|
||||
|
||||
- [Go SDK](/docs/generated/sdks/server-side/go.md)
|
||||
- [Java SDK](/docs/generated/sdks/server-side/java.md)
|
||||
@ -28,8 +27,7 @@ Server-side clients run on your server and communicate directly with your Unleas
|
||||
|
||||
### Client-side SDKs
|
||||
|
||||
Client-side SDKs can connect to the [Unleash Proxy](../../generated/unleash-proxy.md) or to the [Unleash front-end API](../front-end-api.md), but _not_ to the regular Unleash client API.
|
||||
|
||||
Client-side SDKs can connect to [Unleash Edge](/reference/unleash-edge) or to the [Unleash front-end API](../front-end-api.md), but _not_ to the regular Unleash client API.
|
||||
|
||||
- [Android SDK](/docs/generated/sdks/client-side/android-proxy.md)
|
||||
- [Flutter Proxy SDK](/docs/generated/sdks/client-side/flutter.md)
|
||||
@ -56,6 +54,8 @@ If you see an item marked with a ❌ that you would find useful, feel free to re
|
||||
|
||||
:::
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
| Capability | [Java](/docs/generated/sdks/server-side/java.md) | [Node.js](/docs/generated/sdks/server-side/node.md) | [Go](/docs/generated/sdks/server-side/go.md) | [Python](/docs/generated/sdks/server-side/python.md) | [Ruby](/docs/generated/sdks/server-side/ruby.md) | [.NET](/docs/generated/sdks/server-side/dotnet.md) | [PHP](/docs/generated/sdks/server-side/php.md) | [Rust](/docs/generated/sdks/server-side/rust.md) |
|
||||
| --- | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: |
|
||||
| **Category: Initialization** | | | | | | | | |
|
||||
@ -109,6 +109,8 @@ If you see an item marked with a ❌ that you would find useful, feel free to re
|
||||
| Bootstrap from file | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ⭕ |
|
||||
| Custom Bootstrap implementation | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ⭕ |
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
## Community SDKs ❤️ {#community-sdks}
|
||||
|
||||
Here's some of the fantastic work our community has done to make Unleash work in even more contexts. If you still can't find your favorite language, let us know and we'd love to help you create the client for it!
|
||||
@ -137,17 +139,15 @@ If you can't find an SDK that fits your need, you can also develop your own SDK.
|
||||
- [Unleash Client Specifications](https://github.com/Unleash/client-specification) - Used by all official SDKs to make sure they behave correctly across different language implementations. This lets us verify that a gradual rollout to 10% of the users would affect the same users regardless of which SDK you're using.
|
||||
- [Client SDK overview](../client-specification) - A brief, overall guide of the _Unleash Architecture_ and important aspects of the SDK role in it all.
|
||||
|
||||
|
||||
## Client-side SDK behavior
|
||||
|
||||
The following section details the behavior of frontend / client-side SDKs when initializing and fetching flags with respect to network connectivity.
|
||||
|
||||
When the SDK is initialized in the application, an in memory repository is setup and synchronized against the frontent API using the configured token and context. Note that the frontend API is hosted by either the Unleash Proxy/Edge or the upstream Unleash instance directly.
|
||||
When the SDK is initialized in the application, an in memory repository is setup and synchronized against the frontend API using the configured token and context. Note that the frontend API is hosted by either the Unleash Proxy/Edge or the upstream Unleash instance directly.
|
||||
|
||||
1. All feature flag evaluation is performed by the Proxy/Edge or Unleash instance. A payload of all enabled flags and their variants (if applicable) is returned as a single request. Disabled flags are not included.
|
||||
|
||||
2. When a page inside the application requests a feature flag, the SDK will return the flag state from memory. No network connection to the frontend API is performed.
|
||||
|
||||
3. The SDK periodically syncs with the frontend API to retrieve the latest set of enabled flags
|
||||
|
||||
## Working offline
|
||||
|
Loading…
Reference in New Issue
Block a user