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
- Obtains a cached value for the provided `key`, invoking the callback if the value is missing or has expired. The `ttl` is the maximum duration in milliseconds the value can be cached. If omitted or set to `-1`, the value will have no expiry. There is no guarantee that a value will be retained in the cache for the provided duration, however. The cache space is limited, so efforts to minimize the cached value size will afford a higher cache hit ratio.
35
35
-`cache.delete(key: string): void`
36
-
- Forcefully remove the value associated withe the `key`.
36
+
- Forcefully remove the value associated with the `key`.
37
37
38
38
The following example gets a JSON value through the cache, only invoking the callback as needed:
Copy file name to clipboardExpand all lines: src/connections/destinations/add-destination.md
-99Lines changed: 0 additions & 99 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,102 +156,3 @@ In this example:
156
156
- Events sent with this `Mixpanel` setting are **not** sent to instances of Mixpanel.
157
157
- Events sent to any Adobe Analytics destinations with this `Adobe Analytics` setting use the same `marketingCloudVisitorId` value specified.
158
158
You can not use the [integrations object](/docs/guides/filtering-data/#filtering-with-the-integrations-object) to send data to individual destination instances.
159
-
160
-
### Multi-instance compatible destinations
161
-
162
-
The sections below list the most popular multi-instance Segment destinations. This list is not exhaustive. If you don’t see your favorite destination in these lists, [contact Segment Customer Success](https://segment.com/help/contact/).
163
-
164
-
##### Cloud-mode and device-mode
165
-
For the following destinations, a single source can connect to up to 10 instances of the destination in cloud-mode, and **up to one instance in device-mode**.
For the following destinations, a single source can connect to up to 10 instances of the destination in cloud-mode, but these destinations do not support a device-mode connection at all.
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/adjust/index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ To use the latest Adjust SDK to collect IDFAs you must do the following:
81
81
}];
82
82
```
83
83
84
-
5. Follow [Segment's guide for collecting IDFA](https://segment.com/docs/connections/sources/catalog/libraries/mobile/ios/#idfa-collection-in-40-beta-and-later)
84
+
5. Follow [Segment's guide for collecting IDFA](/docs/connections/sources/catalog/libraries/mobile/ios/#idfa-collection-in-40-beta-and-later)
85
85
86
86
### Android
87
87
@@ -138,7 +138,7 @@ analytics.track({
138
138
139
139
## Identify
140
140
141
-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
141
+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
142
142
143
143
```javascript
144
144
analytics.identify('12091906-01011992', {
@@ -152,7 +152,7 @@ When you call `identify`, Segment will call Adjust's [addSessionPartnerParameter
152
152
153
153
## Track
154
154
155
-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
155
+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
156
156
157
157
```javascript
158
158
analytics.track('Article Completed', {
@@ -168,7 +168,7 @@ If you don't provide a mapping, Adjust cannot accept the event. We include all t
168
168
169
169
## Reset
170
170
171
-
If you're not familiar with the Segment Specs, take a look to understand what the [Reset method](https://segment.com/docs/connections/spec/reset/) does. An example call would look like:
171
+
If you're not familiar with the Segment Specs, take a look to understand what the [Reset method](/docs/connections/spec/reset/) does. An example call would look like:
172
172
173
173
```javascript
174
174
analytics.reset();
@@ -195,7 +195,7 @@ Using Adjust's [Attribution callback](https://github.com/adjust/ios_sdk#attribut
195
195
| campaign.adCreative | attribution.creative | the creative grouping level of the current install |
196
196
| campaign.adGroup | attribution.adgroup | the ad group grouping level of the current install |
197
197
198
-
If any value is unavailable, it will default to nil. This call will be sent to all enabled [device and cloud mode](https://segment.com/docs/connections/destinations/#connection-modes) destinations.
198
+
If any value is unavailable, it will default to nil. This call will be sent to all enabled [device and cloud mode](/docs/connections/destinations/#connection-modes) destinations.
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/cruncher/index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,11 @@ This destination is maintained by Cruncher. For any issues with the destination,
19
19
20
20
Alternatively, you can connect Segment to Cruncher directly from your [Cruncher dashboard](https://tower.cruncherlabs.com/connectors). For more information, visit [Cruncher Documentation](https://docs.cruncherlabs.com/connectors/saas/segment).
21
21
22
-
_Optional:_ If you would like to sync your past events which were sent through Segment into your Cruncher instance as a Business Tier customer, you have the option of leveraging [Segment Replay](https://segment.com/docs/guides/destinations/what-are-my-data-export-options/#business-plan-customers).
22
+
_Optional:_ If you would like to sync your past events which were sent through Segment into your Cruncher instance as a Business Tier customer, you have the option of leveraging [Segment Replay](/docs/guides/destinations/what-are-my-data-export-options/#business-plan-customers).
23
23
24
24
## Page
25
25
26
-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
26
+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
27
27
28
28
```
29
29
analytics.page()
@@ -34,7 +34,7 @@ Page calls will be sent to Cruncher as a `pageview`.
34
34
35
35
## Screen
36
36
37
-
If you're not familiar with the Segment Specs, take a look to understand what the [Screen method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
37
+
If you're not familiar with the Segment Specs, take a look to understand what the [Screen method](/docs/connections/spec/page/) does. An example call would look like:
38
38
39
39
```
40
40
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
@@ -45,7 +45,7 @@ Screen calls will be sent to Cruncher as a `screenview`.
45
45
46
46
## Identify
47
47
48
-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
48
+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
49
49
50
50
```
51
51
analytics.identify('userId123', {
@@ -58,7 +58,7 @@ Identify calls will be sent to Cruncher as an `identify` event.
58
58
59
59
## Track
60
60
61
-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
61
+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
0 commit comments