Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove enable auto update from docs #2397

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/client/Android/_options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ You can pass in an optional parameter `options` in addition to `sdkKey` and `use
- if you always want to wait for the latest values fetched from Statsig server, you should set this to 0 so we do not timeout the network request.
- unit is milliseconds.

- **enableAutoValueUpdate**: `Boolean`, default `false`
- by default, Statsig will only fetch the gates/configs for the user when initialize() is called. This ensures a consistent experience for the duration of a session. If you want to override this behavior and have flags/configs update in near real time, pass `true` instead.

- **overrideStableID**: `String?`, default `null`
- overrides the `stableID` in the SDK that is set for the user

Expand Down
3 changes: 0 additions & 3 deletions docs/client/iOS/_options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@
Statsig.start(sdkKey: "client-key", options: opts)
```

- **enableAutoValueUpdate**: Bool, default `false`
- by default, feature values for a user is fetched once during `Statsig.start` and don't change throughout the session. Setting this value to true will turn on the feature for Statsig to periodically fetch updated values for the current user.

- **storageProvider**: StorageProvider, default `nil`
- Allows users to implement their own caching strategy by passing an
object that conforms to the `StorageProvider` protocol.
Expand Down
Loading