Skip to content

Commit 21b5539

Browse files
authored
Merge pull request #214378 from HeidiSteen/heidist-work
Revised FAQ and promoted it in the TOC for discoverability
2 parents b53ee48 + 4546ca2 commit 21b5539

File tree

4 files changed

+54
-25
lines changed

4 files changed

+54
-25
lines changed

articles/search/TOC.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
- name: Overview
44
expanded: true
55
items:
6-
- name: What is Cognitive Search?
6+
- name: What's Cognitive Search?
77
href: search-what-is-azure-search.md
8+
- name: What's new in Search?
9+
href: whats-new.md
810
- name: Features in Search
911
href: search-features-list.md
10-
- name: New in Search
11-
href: whats-new.md
12+
- name: FAQ
13+
href: search-faq-frequently-asked-questions.yml
1214
- name: Quickstarts
1315
items:
1416
- name: Portal
@@ -618,8 +620,6 @@
618620
href: https://azure.microsoft.com/support/community/?product=search
619621
- name: Azure Updates
620622
href: https://azure.microsoft.com/updates/?product=search
621-
- name: FAQ
622-
href: search-faq-frequently-asked-questions.yml
623623
- name: Demo sites
624624
href: resource-demo-sites.md
625625
- name: Tools

articles/search/search-faq-frequently-asked-questions.yml

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### YamlMime:FAQ
22
metadata:
3-
title: FAQ
3+
title: Cognitive Search FAQ
44
titleSuffix: Azure Cognitive Search
55
description: Get answers to common questions about Microsoft Azure Cognitive Search service, a cloud hosted search service on Microsoft Azure.
66

@@ -9,14 +9,28 @@ metadata:
99
ms.author: heidist
1010
ms.service: cognitive-search
1111
ms.topic: faq
12-
ms.date: 05/24/2022
13-
title: Azure Cognitive Search FAQ
14-
summary: Find answers to commonly asked questions about concepts, code, and scenarios related to Azure Cognitive Search.
15-
12+
ms.date: 10/12/2022
13+
title: Cognitive Search Frequently Asked Questions
14+
summary: Find answers to commonly asked questions about Azure Cognitive Search.
1615

1716
sections:
1817
- name: General
1918
questions:
19+
- question: |
20+
What is Azure Cognitive Search?
21+
answer: |
22+
Azure Cognitive Search is a service on Azure that provides a dedicated search engine and persistent storage of your searchable content for full text search scenarios. It includes integrated AI used during indexing to extract more text and structure. It provides APIs and tools for integration and all search-related operations, including rich support in Azure portal for configuring and using most search features.
23+
24+
- question: |
25+
Are "Azure Search" and "Azure Cognitive Search" the same service?
26+
answer: |
27+
Azure Search was renamed to Azure Cognitive Search in October 2019 to reflect the expanded (yet optional) use of cognitive skills and AI processing in service operations.
28+
29+
- question: |
30+
What languages are supported?
31+
answer: |
32+
The default analyzer used for tokenization is standard Lucene and it's language agnostic. Otherwise, language support is expressed through [language analyzers](index-add-language-analyzers.md#supported-language-analyzers) that apply linguistic rules to inbound (indexing) and outbound (queries) content. Some features, such as [semantic search](/rest/api/searchservice/preview-api/search-documents#queryLanguage) and [speller](speller-how-to-add.md#supported-languages), are limited to a subset of languages.
33+
2034
- question: |
2135
How do integrate search into my solution?
2236
answer: |
@@ -46,6 +60,11 @@ sections:
4660
4761
- name: Indexing
4862
questions:
63+
- question: |
64+
What does "indexing" mean in Cognitive Search?
65+
answer: |
66+
It refers to the ingestion, parsing, and storing of textual content and tokens that populate a search index. Indexing creates inverted indices and other physical data structures that support information retrieval.
67+
4968
- question: |
5069
Can I move, backup, and restore indexes?
5170
answer: |
@@ -54,7 +73,7 @@ sections:
5473
However, if you want to move an index between search services, you can try the **index-backup-restore** sample code in this [Azure Cognitive Search .NET sample repo](https://github.com/Azure-Samples/azure-search-dotnet-samples).
5574
5675
- question: |
57-
Can I restore my index or service once it is deleted?
76+
Can I restore my index or service once it's deleted?
5877
answer: |
5978
No, if you delete an Azure Cognitive Search index or service, it can't be recovered. When you delete a search service, all indexes in the service are deleted permanently.
6079
@@ -64,7 +83,12 @@ sections:
6483
If you're using the search indexer for Azure SQL Database, there are no restrictions on the use of primary or secondary replicas as a data source when building an index from scratch. However, refreshing an index with incremental updates (based on changed records) requires the primary replica. This requirement comes from SQL Database, which guarantees change tracking on primary replicas only. If you try using secondary replicas for an index refresh workload, there's no guarantee you get all of the data.
6584
6685
- name: Queries
67-
questions:
86+
questions:
87+
- question: |
88+
Where does query execution occur?
89+
answer: |
90+
Queries execute over a single search index that's hosted on your search service. You can't join multiple indices to search content in two or more indexes, but you can [query same-name indexes in multiple search services](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/multiple-search-services).
91+
6892
- question: |
6993
Why are there zero matches on terms I know to be valid?
7094
answer: |
@@ -104,7 +128,7 @@ sections:
104128
- question: |
105129
Can I control access to search results based on user identity?
106130
answer: |
107-
Typically, users who are authorized to run your application are also authorized to see all search results. Cognitive Search doesn't have built-in support for row-level or document-level permissions, but you can implement [security filters](./search-security-trimming-for-azure-search.md) as a workaround.
131+
Not exactly. Typically, users who are authorized to run your application are also authorized to see all search results. Cognitive Search doesn't have built-in support for row-level or document-level permissions, but you can implement [security filters](./search-security-trimming-for-azure-search.md) as a workaround.
108132
109133
- question: |
110134
Can I control access to operations based on user identity?

0 commit comments

Comments
 (0)