Skip to content

Commit

Permalink
adds list of supported methods to the base_url section
Browse files Browse the repository at this point in the history
  • Loading branch information
david-zoltan committed Oct 15, 2019
1 parent a352c28 commit 1305ce6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/sdk-reference/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ configcatclient.create_client_with_auto_poll(
"#YOUR-API-KEY#", base_url="https://myCDN.configcat.com");
```

The following methods support tha `base_url` parameter:

- `configcatclient.create_client_with_auto_poll()`
- `configcatclient.create_client_with_manual_poll()`
- `configcatclient.create_client_with_lazy_load()`

## Polling Modes
The *ConfigCat SDK* supports 3 different polling mechanisms to acquire the setting values from *ConfigCat*. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. With the following polling modes, you can customize the SDK to best fit to your application's lifecycle.

Expand Down
6 changes: 6 additions & 0 deletions docs/sdk-reference/ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ ConfigCat.create_client_with_auto_poll(
"#YOUR-API-KEY#", base_url: "https://myCDN.configcat.com");
```

The following methods support tha `base_url` parameter:

- `ConfigCat.create_client_with_auto_poll()`
- `ConfigCat.create_client_with_manual_poll()`
- `ConfigCat.create_client_with_lazy_load()`

## Polling Modes
The *ConfigCat SDK* supports 3 different polling mechanisms to acquire the setting values from *ConfigCat*. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. With the following polling modes, you can customize the SDK to best fit to your application's lifecycle.

Expand Down

0 comments on commit 1305ce6

Please sign in to comment.