Skip to content

Commit 25bcab9

Browse files
committed
add example
1 parent d874000 commit 25bcab9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

articles/cosmos-db/optimize-cost-reads-writes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ The only factor affecting the RU charge of a point read (besides the consistency
4343
| 1 KB | 1 RU |
4444
| 100 KB | 10 RUs |
4545

46-
Because point reads (key/value lookups on the item ID and partition key) are the most efficient kind of read, you should make sure your item ID has a meaningful value so you can fetch your items with a point read (instead of a query) when possible. Point reads bypass the query engine and can only be made using the REST API or SDKs. Queries that filter on one item's ID and partition key are not considered a point read.
46+
Because point reads (key/value lookups on the item ID and partition key) are the most efficient kind of read, you should make sure your item ID has a meaningful value so you can fetch your items with a point read (instead of a query) when possible.
47+
48+
> [!NOTE]
49+
> In the API for NoSQL, point reads can only be made using the REST API or SDKs. Queries that filter on one item's ID and partition key aren't considered a point read. To see an example using the .NET SDK, see [read an item in Azure Cosmos DB for NoSQL.](./nosql/how-to-dotnet-read-item.md)
4750
4851
### Queries
4952

0 commit comments

Comments
 (0)