Optimizely will be sunsetting Full Stack Experimentation on July 29, 2024. See the recommended Feature Experimentation migration timeline and documentation.

Dev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySumbit a ticketLog In
GitHubNuGetDev CommunitySumbit a ticket
These docs are for v2.0. Click to read the latest docs for v3.0.

Multiple languages

In more complex codebases, a single customer interaction will often involve multiple services and languages. Maybe you want to use a server-side SDK to run an experiment on your backend, but track results with conversion events using one or more client-side SDKs (JavaScript, iOS, or Android). Or perhaps your experiment involves multiple services written in different languages–for example, when using a microservice architecture, or when migrating from an old stack to a new one.

Optimizely provides Full Stack SDKs for most major languages. This guide describes some common use cases for multiple languages, demonstrates how to get started with multiple languages, and addresses some common implementation questions.

Download Full Stack 2.0 SDKs

If you plan to use multiple SDKs, we strongly recommend using version 2.0 or later of the Full Stack SDKs. Projects created with Full Stack 2.0 generate a v4 datafile with full Feature Management support. This datafile will work with all version 2.0 SDKs.

Because your account already includes a Full Stack project, you can now create experiments and point them to your datafile.

Pre-2.0 projects

If you have existing projects created before Full Stack 2.0, you can still use them across multiple languages. However, there are some important restrictions:

  • You cannot experiment across Full Stack and Mobile projects. Pre-2.0 Full Stack and Mobile projects generate incompatible datafiles (v2 and v3, respectively).
  • You cannot use Feature Management with existing Mobile projects. To use Feature Management with Mobile, install the 2.0 SDK and determine if you need to create a new Full Stack project.

Consistent bucketing and why it matters

All Optimizely SDKs use MurmurHash3 to determine whether a user is bucketed into an experiment, and if so, which variation they receive. This is based on the user ID and the experiment key. The bucketing code is shared across all Optimizely SDKs.

This means bucketing is deterministic you will always get the same result when bucketing a given user ID into a given experiment) and consistent across SDKs (given a common datafile, you will get the same result bucketing user ID abc into experiment 123 with the Python SDK as with any other SDK).

This behavior is the core of Full Stack’s support for multiple languages. However, it relies on three assumptions:

  • You must use the same datafile across SDKs. Learn more about best practices for datafile versioning and management.
  • You must use the same user ID and attributes when bucketing a user across SDKs. If all your SDKs use the same deterministic method to generate user IDs, then you’re all set. However, if you use random user IDs, you’ll need to pass these from the server to any client SDKs. See Sharing user IDs and attributes with client SDKs below.
  • If you use a User Profile Service with one SDK, you must implement it consistently across all SDKs. For example, if a user profile service is implemented on your iOS client (this is the default behavior) but not on your Ruby backend, and you changed traffic allocation for a running experiment, some users would be bucketed inconsistently across client and server. To avoid this, you would have to implement the same user profile service in your Ruby backend as well.

Bucketing ‘at the source’ for server-side experiments

Because of the deterministic and consistent nature of bucketing, it’s fine to bucket users multiple times across SDKs. However, when experimenting across server-side and client-side SDKs, you might find it helpful to bucket users on the server-side to ensure a consistent experience:

  • If your client does not have access to the user ID and/or attributes needed for bucketing, you can bucket users on the server, then pass along the decision and needed data to the client
  • If you maintain many different client SDKs across different platforms, it may lighten your implementation workload to consolidate bucketing

Sharing user IDs and attributes with client SDKs

When using both client and server SDKs, it may be necessary to pass the user ID from the server to the client to ensure proper conversion event tracking. You may also want to pass along user attributes only available on the server for use in tracking conversion events.

While there is no one-size-fits-all approach for this, we recommend using HTTPS-only cookies (meaning, cookies with the Secure flag set). When handling a request from a new user, the server assigns a user ID, buckets the user and runs variation code (if necessary). It then sets a Secure cookie in the response, containing the user ID and any necessary attribute data. The client SDK then reads this cookie and uses it when tracking events. This approach can be used with both the JavaScript and iOS/Android SDKs.

Example: Server-side variation code with client-side conversion tracking

The most common use case for multiple languages is executing variation code on the server and measuring the effects of those changes on the client. Let us run through a basic example of this use case.

In our example, we have a JavaScript single-page app eCommerce site, and we are running an experiment in our Python server code on the sorting algorithm for the product list. We want to see if this experiment affects how often users add items to their carts on our site. We will use the Python SDK to run the experiment and the JavaScript SDK to track conversion events.

Here’s how to get started:

  1. Set up a new Full Stack 2.0 project. We will be using our Python backend to assign users to variations, so the project’s primary language should be Python.
  2. Install and set up the latest versions of the necessary SDKs on our server and clients, then point them to our project’s datafile. We will install the Python SDK on our server and use npm to install the JavaScript SDK in our single-page app.
  3. Create a new experiment and conversion event. We’ll create an experiment called product_list_order with two variations, expensive_first and cheap_first. We’ll also create an event user_added_to_cart to track the goal of our experiment.
  4. Figure out if we will need to pass user IDs and attributes from the server.
  • User IDs: If both the server and client have access to stable, consistent user IDs for everyone in our experiments, we can use that as our user ID. For example, if our experiment will only affect logged-in users, and both the client and server know the user’s unique ID in our database, we could use that as the user ID for our activate calls on the server and track calls on the client. In any other case, we’ll need to pass the user ID from the server.
  • User Attributes: Do we want to track any user attributes with our conversion event, and are any of them unavailable on the client? If so, we’ll need to pass them from the server.
  1. Pass user IDs and/or attributes from the server to the client if necessary. See Sharing user IDs and attributes with client SDKs above.
  2. Use Activate on the server to bucket users and execute variation code. In this example, we will activate the product_list_order experiment on our Python server, and sort the product list depending on which variation is returned.
  3. Use Track on the client to track conversion events. Next, we would set up our JavaScript client app to track the user_added_to_cart event every time a user adds an item to their cart.