1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

update docs

This commit is contained in:
Ivar 2017-02-13 21:12:52 +01:00 committed by Ivar Conradi Østhus
parent 4568db9c39
commit b2dfd971c1
5 changed files with 8 additions and 6 deletions

View File

@ -18,7 +18,7 @@ This repo contains the unleash-server, which contains the admin UI and a place t
In order to make use of unleash you will also need a client implementation.
<kbd>
![2016-12-28-211658_1115x752_scrot](https://github.com/Unleash/unleash/raw/master/docs/2017-02-06-130615_942x802_scrot.png)
![Unleash UI](https://github.com/Unleash/unleash/raw/master/docs/assets/dashboard.png)
</kbd>
Online demo [version availble on heroku](https://unleash-new-ui.herokuapp.com/#/features).

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

View File

@ -18,11 +18,13 @@ Active for users with a userId defined in the userIds-list. Typically I want to
## gradualRolloutUserId
Gradually activate feature toggle for logged in users. Stickiness based on user id.
This strategy guarantees that the same user gets the same experience every time,
across devices. It also guarantees that a user which is among the first 10% will also
be among 20% roll-out degree. Thus we ensure that users gets the same experience,
even if we gradually increase the number of users we expose the feature to. To
achieve this we use a hash-algorithm where we normalize the user-id to a number
between 1 and 100.
across devices. It also guarantees that a user which is among the first 10% will
also be among the first 20% of the users. Thus we ensure that users get the same
experience. Even if we gradually increase the number of users who are exposed to
a particular feature. To achieve this we hash the user id and normalise the hash
value to a number between 1 and 100 with a simple modulo operator.
![hash_and_normalise](assets/hash_and_normalise.png)
**Parameters**
- percentage - *The percentage (0-100) you want to enable to feature toggle for.*

BIN
docs/assets/dashboard.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB