1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/website/docs/user_guide/index.md

36 lines
2.6 KiB
Markdown
Raw Normal View History

2021-02-28 22:12:19 +01:00
---
id: index
title: Introduction
slug: /
sidebar_position: 1
2021-02-28 22:12:19 +01:00
---
2021-06-14 21:35:19 +02:00
Welcome to the Unleash documentation. Our goal with our documentation is to guide you through the most essential concepts of Unleash.
2021-02-28 22:12:19 +01:00
2021-06-14 21:35:19 +02:00
One of the most important aspects of the architecture to understand is that feature toggles _are evaluated in a client SDKs_ which runs as part of your application. This makes toggle evaluations super-fast (_we talk nano-seconds_), scalable and resilient against network disturbances. In order to achieve this Unleash compromises a small update-delay when you change your toggle configurations until it is fully propagated to your application (in terms of seconds and is configurable).
2021-02-28 22:12:19 +01:00
If you want more details you can read about [our unique architecture](https://www.getunleash.io/blog/our-unique-architecture).
2021-02-28 22:12:19 +01:00
2021-06-14 21:35:19 +02:00
### Unleash Server {#unleash-server}
2021-02-28 22:12:19 +01:00
2021-06-04 19:31:28 +02:00
Before you can connect your application to Unleash you need a Unleash server. You have a few options available:
2021-02-28 22:12:19 +01:00
2021-06-14 21:35:19 +02:00
1. **Unleash Open-source**
- [Docker](deploy/getting_started)
- [Helm Chart](https://github.com/unleash/helm-charts/)
- [Click-to-deploy on Heroku](https://www.heroku.com/deploy/?template=https://github.com/Unleash/unleash)
2. **Unleash Enterprise**
- [Hosted Plans](https://www.getunleash.io/plans)
- [Self-hosted](https://www.getunleash.io/blog/self-host-your-feature-toggle-system)
2021-02-28 22:12:19 +01:00
2021-06-14 21:35:19 +02:00
### System Overview {#system-overview}
2021-02-28 22:12:19 +01:00
2021-06-14 21:35:19 +02:00
![system_overview](/img/Unleash_architecture.svg 'System Overview')
2021-02-28 22:12:19 +01:00
2021-06-14 21:35:19 +02:00
- **Unleash API** - The service holding all feature toggles and their configurations. Configurations declare which activation strategies to use and which parameters they should get. [API documentation](/api)
- **Unleash Admin UI** - The dashboard used to manage feature toggles, define new strategies, look at metrics, etc. [Create your first feature toggle](user_guide/create-feature-toggle.md)
- **Unleash SDK** - Used by clients to check if a feature is enabled or disabled. The SDK also collects metrics and sends them to the Unleash API. [See all our SDKs](sdks/index.md)
- **Unleash Proxy** - Sits between frontend/native applications and the Unleash API. Ensures high performance and that you don't expose the full feature toggle configuration to end-users. [Read more about Unleash Proxy](sdks/unleash-proxy.md)
2021-02-28 22:12:19 +01:00
To be super fast (_we talk nano-seconds_), the [client SDK](sdks/index.md) caches all feature toggles and their current configuration in memory. The activation strategies are also implemented in the SDK. This makes it really fast to check if a toggle is on or off because it is just a simple function operating on local state, without the need to poll data from the database.