Skip to content

Commit 61bed2d

Browse files
committed
fixed H2 bug
1 parent 28bccd4 commit 61bed2d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

articles/search/search-get-started-arm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom:
1212
- mode-arm
1313
- devx-track-arm-template
1414
- ignite-2023
15-
ms.date: 06/29/2023
15+
ms.date: 04/24/2023
1616
---
1717

1818
# Quickstart: Deploy Azure AI Search using an Azure Resource Manager template

articles/search/search-get-started-text.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ ms.custom:
1313
- devx-track-python
1414
- ignite-2023
1515
ms.topic: quickstart
16-
ms.date: 06/09/2023
16+
ms.date: 04/24/2024
1717
---
1818

1919
# Quickstart: Full text search using the Azure SDKs
2020

2121
Learn how to use the **Azure.Search.Documents** client library in an Azure SDK to create, load, and query a search index using sample data for [**full text search**](search-lucene-query-architecture.md). Full text search uses Apache Lucene for indexing and queries, and a BM25 ranking algorithm for scoring results.
2222

23-
This quickstart has [steps](#create-load-and-query-an-index) for the following SDKs:
23+
This quickstart has steps for the following SDKs:
2424

25-
+ [Azure SDK for .NET](/dotnet/api/overview/azure/search.documents-readme)
26-
+ [Azure SDK for Python](/python/api/overview/azure/search-documents-readme)
27-
+ [Azure SDK for Java](/java/api/overview/azure/search-documents-readme)
28-
+ [Azure SDK for JavaScript](/javascript/api/overview/azure/search-documents-readme)
25+
+ [Azure SDK for .NET](?tabs=dotnet#create-load-and-query-an-index)
26+
+ [Azure SDK for Python](?tabs=python#create-load-and-query-an-index)
27+
+ [Azure SDK for Java](?tabs=java#create-load-and-query-an-index)
28+
+ [Azure SDK for JavaScript](?tabs=javascript#create-load-and-query-an-index)
2929

3030
## Prerequisites
3131

articles/search/search-howto-concurrency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Every time you update a resource, its ETag changes automatically. When you imple
3333
> [!Note]
3434
> There is only one mechanism for concurrency. It's always used regardless of which API or SDK is used for resource updates.
3535
36-
## Use cases and sample code
36+
## Example
3737

38-
The following code demonstrates optimistic concurrency for an update operation. It fails the second update because the object's ETag is changed by a previous update. More specifically, when the ETag in the request header no longer matches the ETag of the object, the search service return a status 400 bad request message, and the update fails.
38+
The following code demonstrates optimistic concurrency for an update operation. It fails the second update because the object's ETag is changed by a previous update. More specifically, when the ETag in the request header no longer matches the ETag of the object, the search service return a status code of 400 (bad request), and the update fails.
3939

4040
```csharp
4141
using Azure;

0 commit comments

Comments
 (0)