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
Copy file name to clipboardExpand all lines: website/docs/advanced/migration-from-launchdarkly.mdx
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -254,7 +254,7 @@ Let's see now step by step how to convert this code to ConfigCat:
254
254
```
255
255
256
256
Please note that the ConfigCat client doesn't maintain a persistent connection to the remote server, but uses different
257
-
polling strategies to get the data necessary for feature flag evaluation. Refer to the [SDK reference](../../sdk-reference/node#creating-the-configcat-client)
257
+
polling strategies to get the data necessary for feature flag evaluation. Refer to the [SDK reference](../../sdk-reference/js/overview#creating-the-configcat-client)
258
258
to learn more about the options. For frontend applications and long-running backend services, Auto Polling mode is
259
259
usually a good choice.
260
260
1. Adjust the wait-for-initialization logic.
@@ -274,7 +274,7 @@ Let's see now step by step how to convert this code to ConfigCat:
274
274
the default value you pass to them.)
275
275
276
276
Actually, you only need this wait-for-initialization logic at the startup of your applications if you want to use
277
-
[synchronous feature flag evaluation via snapshots](../../sdk-reference/node#snapshots-and-synchronous-feature-flag-evaluation).
277
+
[synchronous feature flag evaluation via snapshots](../../sdk-reference/js/overview#snapshots-and-synchronous-feature-flag-evaluation).
278
278
* For other polling modes, the wait-for-initialization logic doesn't make sense, so just omit it.
279
279
1. Rewrite LaunchDarkly contexts to ConfigCat User Objects.
280
280
@@ -283,7 +283,7 @@ Let's see now step by step how to convert this code to ConfigCat:
283
283
but it's a simpler data structure.
284
284
285
285
To be able to convert a context data structure to a User Object one, you will need to do the following:
286
-
* Read [the section on User Objects](../../sdk-reference/node#user-object) in the reference of the SDK for your
286
+
* Read [the section on User Objects](../../sdk-reference/js/overview#user-object) in the reference of the SDK for your
Copy file name to clipboardExpand all lines: website/docs/sdk-reference/dotnet.mdx
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,8 @@ else
69
69
}
70
70
```
71
71
72
+
The _ConfigCat SDK_ also offers a synchronous API for feature flag evaluation. Read more [here](#snapshots-and-non-blocking-synchronous-feature-flag-evaluation).
73
+
72
74
### 5. Dispose the _ConfigCat_ client
73
75
74
76
You can safely dispose all clients at once or individually and release all associated resources on application exit.
@@ -115,7 +117,7 @@ These are the available options on the `ConfigCatClientOptions` class:
115
117
|`HttpClientHandler`| Optional, `HttpClientHandler` to provide network credentials and proxy settings. [More about the proxy settings](#using-configcat-behind-a-proxy). | built-in `HttpClientHandler`|
116
118
|`HttpTimeout`| Optional, sets the underlying HTTP client's timeout. [More about the HTTP timeout](#http-timeout). |`TimeSpan.FromSeconds(30)`|
117
119
|`FlagOverrides`| Optional, sets the local feature flag & setting overrides. [More about feature flag overrides](#flag-overrides). ||
118
-
|`DataGovernance`| Optional, defaults to `Global`. Describes the location of your feature flag and setting data within the ConfigCat CDN. This parameter needs to be in sync with your Data Governance preferences. [More about Data Governance](../advanced/data-governance.mdx). Available options: `Global`, `EuOnly`|`Global`|
120
+
|`DataGovernance`| Optional, describes the location of your feature flag and setting data within the ConfigCat CDN. This parameter needs to be in sync with your Data Governance preferences. [More about Data Governance](../advanced/data-governance.mdx). Available options: `Global`, `EuOnly`|`Global`|
119
121
|`DefaultUser`| Optional, sets the default user. [More about default user](#default-user). |`null` (none) |
120
122
|`Offline`| Optional, determines whether the client should be initialized to offline mode. [More about offline mode](#online--offline-mode). |`false`|
Copy file name to clipboardExpand all lines: website/docs/sdk-reference/ios.mdx
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -145,6 +145,8 @@ if isMyAwesomeFeatureEnabled {
145
145
</TabItem>
146
146
</Tabs>
147
147
148
+
The _ConfigCat SDK_ also offers a synchronous API for feature flag evaluation. Read more [here](#snapshots-and-non-blocking-synchronous-feature-flag-evaluation).
149
+
148
150
### 5. Close ConfigCat client
149
151
150
152
You can safely shut down all clients at once or individually and release all associated resources on application exit.
Copy file name to clipboardExpand all lines: website/docs/sdk-reference/js-ssr.mdx
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
id: 'js-ssr'
3
-
title: JavaScript (SSR) SDK Reference
4
-
description: ConfigCat JavaScript (SSR) SDK Reference. This is a step-by-step guide on how to use feature flags in your Server-Side-Rendered (SSR) JavaScript application.
3
+
title: Legacy JavaScript (SSR) SDK Reference
4
+
description: ConfigCat Legacy JavaScript (SSR) SDK Reference. This is a step-by-step guide on how to use feature flags in your Server-Side-Rendered (SSR) JavaScript application.
0 commit comments