Skip to content

Commit 7a9898f

Browse files
committed
fix warnings
1 parent 554ed46 commit 7a9898f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

articles/cosmos-db/how-to-configure-integrated-cache.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,14 @@ CosmosPagedFlux<MyClass> pagedFluxResponse = container.queryItems(
171171
"SELECT * FROM c", queryOptions, MyClass.class);
172172
```
173173

174+
### [Node.js](#tab/nodejs)
175+
176+
The bypass integrated cache request option isn't available in the Node.js SDK.
177+
178+
### [Python](#tab/python)
179+
180+
The bypass integrated cache request option isn't available in the Python SDK.
181+
174182
---
175183

176184
## Verify cache hits

articles/cosmos-db/integrated-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ To better understand the `MaxIntegratedCacheStaleness` parameter, consider the f
137137

138138
The integrated cache has a limited storage capacity determined by the dedicated gateway SKU provisioned. By default, all requests from clients configured with the dedicated gateway connection string go through the integrated cache and take up cache space. You can control which items and queries are cached with the bypass integrated cache request option, currently in preview. This request option is useful for item writes or read requests that aren't expected to be frequently repeated. Bypassing the integrated cache for items with infrequent access saves cache space for items with more repeats, increasing RU saving potential and reducing evictions. Requests that bypass the cache are still routed through the dedicated gateway. These requests are served from the backend and cost RUs.
139139

140-
[Learn to bypass the integrated cache.](how-to-configure-integrated-cache.md#bypass-the-integrated-cache)
140+
[Learn to bypass the integrated cache.](how-to-configure-integrated-cache.md#bypass-the-integrated-cache-preview)
141141

142142
## Metrics
143143

0 commit comments

Comments
 (0)