Configure Polling

Settings-file is the representation of the VWO campaigns settings and is responsible for running campaigns with up-to-date configurations. As mentioned in the sections - Caching and Updating the settings-file is an essential step in preventing the settings network requests to be made every time a user comes.

Ways of Detecting Changes in Settings File

One way to detect a change in the settings-file is by polling VWO servers frequently, and when detected, update the settings file.

Another way to detect a change in the settings-file is by using Webhooks. Refer Configure Webhooks to know about it.

Polling of Settings File

Polling of settings-file is a mechanism of continuously fetching the settings from VWO and updating the old one with the latest version. It is a continuous process and hence, requires an input which tells after how long settings should be fetched.
Fetching the settings-file after a regular interval of time and using it helps in synchronizing the VWO Campaigns state with the server's state and helps in delivering a consistent and deterministic result.

1700

Polling

Drawbacks of using Polling

The polling comes with its own limitations.

  • How frequently to poll?
    If you set the polling interval too short, there would be consequences like more TCP connections, bandwidth consumption, CPU and other resources consumption, and draining of batteries on mobile users.
    If you set the polling interval too high, chances are you might end up using a stale version of settings for a longer duration.

📘

Optimal Polling Interval

Finding the optimal polling interval is tricky as it depends on how frequently VWO campaign settings are changed and how much you're willing to compromise with the real-time updates.

Usage

Certain SDKs have in-built support of polling functionality. You simply have to provide the polling interval in order to allow these SDKs to register a polling mechanism internally and fetch the settings after the defined interval.

String settingsFile = VWOHelper.getSettingsFile(accountId, sdkKey);

VWO vwoInstance = VWO.launch(settingsFile)
  .withPollingInterval(1000) // in milliseconds
  .withSdkKey(sdkKey)
  .build();

For other SDKs, please refer to Updating your Settings File.