Skip to content

Commit 752fd2d

Browse files
committed
Fixed blocking issues
1 parent 9fa06db commit 752fd2d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/search/search-lucene-query-architecture.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Operators associated with a subquery determine whether the query "must be" or "s
9292

9393
The query parser restructures the subqueries into a *query tree* (an internal structure representing the query) it passes on to the search engine. In the first stage of query parsing, the query tree looks like this.
9494

95-
![Example of a boolean query with searchmode set to any.][2]
95+
![Conceptual diagram of a boolean query with searchmode set to any.][2]
9696

9797
### Supported parsers: Simple and Full Lucene
9898

@@ -124,7 +124,7 @@ Suppose that we now set "searchMode=all". In this case, the space is interpreted
124124

125125
A modified query tree for this query would be as follows, where a matching document is the intersection of all three subqueries:
126126

127-
![Example of a boolean query with searchmode set to all.][3]
127+
![Conceptual diagram of a boolean query with searchmode set to all.][3]
128128

129129
> [!NOTE]
130130
> Choosing "searchMode=any" over "searchMode=all" is a decision best arrived at by running representative queries. Users who are likely to include operators (common when searching document stores) might find results more intuitive if "searchMode=all" informs boolean query constructs. For more about the interplay between "searchMode" and operators, see [Simple query syntax](/rest/api/searchservice/simple-query-syntax-in-azure-search).
@@ -151,7 +151,7 @@ In our example, prior to analysis, the initial query tree has the term "Spacious
151151

152152
When the default analyzer processes the term, it will lowercase "ocean view" and "spacious", and remove the comma character. The modified query tree will look as follows:
153153

154-
![Example of a boolean query with analyzed terms.][4]
154+
![Conceptual diagram of a boolean query with analyzed terms.][4]
155155

156156
### Testing analyzer behaviors
157157

@@ -301,7 +301,7 @@ For the **description** field, the index is as follows:
301301

302302
Given the inverted indices above, let’s return to the sample query and see how matching documents are found for our example query. Recall that the final query tree looks like this:
303303

304-
![Example of a boolean query with analyzed terms.][4]
304+
![Conceptual diagram of a boolean query with analyzed terms.][4]
305305

306306
During query execution, individual queries are executed against the searchable fields independently.
307307

0 commit comments

Comments
 (0)