This section describes configuring segmentation when using the ContextHub. If you are using the Client Context functionality, please see the relevant documentation for configuring segmentation for Client Context.
Segmentation is a key consideration when creating a campaign. See Managing Audiences for information on how segmentation works and key terms.
Depending on the information you have already collected about your site visitors and the goals you want to achieve, you will need to define the segments and strategies needed for your targeted content.
These segments are then used to provide a visitor with specifically targeted content. This content is maintained in the Personalization section of the website. Activities defined here can be included on any page and define which visitor segment the specialized content is applicable for.
AEM lets you easily personalize your users’ experience. It also lets you verify the results of your segment definitions.
The Audiences console is used to manage segments for ContextHub or Client Context as well as audiences for your Adobe Target account. This documentation covers managing segments for ContextHub. For Client Context segments and Adobe Target segments, please see the relevant documentation.
To access your segments you need to select your configuration. In global navigation select Navigation > Personalization > Audiences. You will see the available configurations:
Select your configuration to see the segments, for example WKND Site:
The Segment Editor lets you easily modify a segment. To edit a segment, select a segment in the list of segments and click the Edit button.
Using the components browser you can add AND and OR containers to define the segment logic, then add additional components to compare properties and values or reference scripts and other segments to define the selection criteria (see Creating a New Segment) to define the exact scenario for selecting the segment.
When the entire statement evaluates to true then the segment has resolved. In the event of multiple segments being applicable, then the Boost factor is also used. See Creating a New Segment for details on the boost factor.
The segment editor does not check for any circular references. For example, segment A references another segment B, which in turn references segment A. You must ensure that your segments do not contain any circular refernces.
The following containers are available out-of-the-box and let you group comparisons and references together for boolean evaluation. They can be dragged from the components browser to the editor. See the following section Using AND and OR Containers for more information.
Container AND |
The boolean AND operator |
Container OR |
The boolean OR operator |
The following segment comparisons are available out-of-the-box to evaluate segment properties. They can be dragged from the components browser to the editor.
Property-Value |
Compares a property of a store to a defined value |
Property-Property | Compares one property of a store to another property |
Property-Segment Reference | Compares a property of a store to another referenced segment |
Property-Script Reference | Compares a property of a store to the results of a script |
Segment Reference-Script Reference | Compares a referenced segment to the results of a script |
When comparing values, if the data type of the comparison is not set (i.e. set to auto detect), ContextHub’s segmentation engine will simply compare the values as javascript would. It does not cast values to their expected types, which can lead to misleading results. For example:
null < 30 // will return true
Therefore when creating a segment, you should select a data type whenever the types of compared values are known. For example:
When comparing the property profile/age
, you already know that the compared type will be number, so even if profile/age
is not set, a comparison profile/age
less-than 30 will return false, as you would expect.
The following references are available out-of-the-box to link directly to a script or another segment. They can be dragged from the components browser to the editor.
Segment Reference |
Evaluate the referenced segment |
Script Reference | Evaluate the referenced script. See the following section Using Script References for more information. |
To define your new segment:
After accessing the segments, navigate to the folder where you would like to create the segment.
click or tap the Create button and select Create ContextHub Segment.
In the New ContextHub Segment, enter a title for the segment as well as a boost value if required and then tap or click Create.
Each segment has a boost parameter that is used as a weighting factor. A higher number indicates that the segment will be selected in preference to a segment with a lower number in instances where multiple segments are valid.
0
1000000
Drag a comparison or reference to the segment editor it will appear in the default AND container.
Double-click on or tap the configure option of the new reference or segment to edit the specific parameters. In this example, we are testing for people in San Jose.
Always set a Data Type if possible to ensure that your comparisons are evaluated properly. See Comparisons for more information.
Click OK to save your definition:
Add more components as required. You can formulate boolean expressions using the container components for AND and OR comparisons (see Using AND and Or Containers below). With the segment editor you can delete components not needed anymore, or drag them to new positions within the statement.
Using the AND and OR container components, you can construct complex segments in AEM. When doing this, it helps to be aware of a few basic points:
The following example is used to select visitors who are considered in our prime age group:
Male and between the ages of 30 and 59
OR
Female and between the ages of 30 and 59
You start by placing an OR container component within the default AND container. Within the OR container, you add two AND containers and within both of these you can add the property or reference components.
By using the Script Reference component, the evaluation of a segment property can be delegated to an external script. Once the script is configured properly, it can be used as any other component of a segment condition.
Add file to contexthub.segment-engine.scripts
clientlib.
Implement a function that returns a value. For example:
ContextHub.console.log(ContextHub.Shared.timestamp(), '[loading] contexthub.segment-engine.scripts - script.profile-info.js');
(function() {
'use strict';
/**
* Sample script returning profile information. Returns user info if data is available, false otherwise.
*
* @returns {Boolean}
*/
var getProfileInfo = function() {
/* let the SegmentEngine know when script should be re-run */
this.dependOn(ContextHub.SegmentEngine.Property('profile/age'));
this.dependOn(ContextHub.SegmentEngine.Property('profile/givenName'));
/* variables */
var name = ContextHub.get('profile/givenName');
var age = ContextHub.get('profile/age');
return name === 'Joe' && age === 123;
};
/* register function */
ContextHub.SegmentEngine.ScriptManager.register('getProfileInfo', getProfileInfo);
})();
Register the script with ContextHub.SegmentEngine.ScriptManager.register
.
If the script depends on additional properties, the script should call this.dependOn()
. For example if the script depends on profile/age
:
this.dependOn(ContextHub.SegmentEngine.Property('profile/age'));
If you have many segments, they can become hard to manage as a flat list. In such cases, it can be useful to create folders to manage your segments.
After accessing the segments, click or tap the Create button and select Folder.
Provide a Title and a Name for your folder.
Tap or click Create.
The folder will appear in the list of segments.
After accessing the segments, click or tap the folder you wish to modify to select it.
Tap or click Rename in the toolbar to rename the folder.
Provide a new Folder Title and tap or click Save.
When renaming folders, only the title can be changed. The name cannot be changed.
After accessing the segments, click or tap the folder you wish to modify to select it.
Tap or click Delete in the toolbar to delete the folder.
A dialog presents a list of folders selected for deletion.
If any of the selected folders contains subfolders or segments, their deletion must be confirmed.
It is not possible to move a segment from one folder to another.
Once the segment has been defined, potential results can be tested with the help of the ContextHub.
For example, our simple segment defintion to identify users in our prime age group is a simple segment definition is based on the age and gender of the user. Loading a specific persona that matches those criteria shows if that the segment is successfully resolved:
Or if it is not resolved:
All traits are resolved immediately, though most only change on page reload.
Such tests can also be performed on content pages and in combination with targeted content and related Activities and Experiences.
If you have set up an activity and experience using the prime age group segment example above, you can easily test your segment with the activity. For details about setting up an activity, please see the related documentation on authoring targeted content.
In editing mode of a page where you have set up targeted content, you can see that the content is targeted via arrow icon on the content.
Switch to preview mode and using the context hub, switch to a persona that does not match the segmentation configured for the experience.
Switch to a persona that does match the segmentation configured for the experience and see that the experience changes accordingly.
Segments are used are used to steer the actual content seen by specific target audiences. See Managing Audiences for more information about audiences and segments and Authoring Targeted Content about using audiences and segments to target content.