You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 16/umbraco-cms/reference/searching/examine/indexing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -496,7 +496,7 @@ The order of these registrations matters. It is important to register your index
496
496
497
497
If you have a need, you can also use an Examine index for other data, that you aren't managing as Umbraco content.
498
498
499
-
As an illustrative example, we can define a collection of books. Here we have a hardcoded collection. In the real-world, it's more likely these will come from a database.
499
+
As an illustrative example, consider a collection of books. This example uses a hardcoded collection. In a real-world scenario, the data would more likely come from a database.
500
500
501
501
```csharp
502
502
namespaceUmbraco.Docs.Samples.Web.CustomIndexing;
@@ -525,7 +525,7 @@ public static class BookData
525
525
}
526
526
```
527
527
528
-
As with the previous example, we define an index. As this time we aren't indexing Umbraco data, we inherit directly from `LuceneIndex`:
528
+
As with the previous example, define an index. At this time, Umbraco data isn't being indexed; the implementation inherits directly from `LuceneIndex`:
529
529
530
530
```csharp
531
531
usingExamine.Lucene;
@@ -598,7 +598,7 @@ public class ExamineComposer : IComposer
598
598
}
599
599
```
600
600
601
-
With this in place, the details of the index will be available under the _Settings > Examine Management > Indexes_ screen.
601
+
With this in place, the details of the index will be available under the **Settings** > **Examine Management** > **Indexes** screen.
602
602
603
603
To verify indexing and querying, a controller can be used:
Copy file name to clipboardExpand all lines: 17/umbraco-cms/reference/searching/examine/indexing.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -496,7 +496,7 @@ The order of these registrations matters. It is important to register your index
496
496
497
497
If you have a need, you can also use an Examine index for other data, that you aren't managing as Umbraco content.
498
498
499
-
As an illustrative example, we can define a collection of books. Here we have a hardcoded collection. In the real-world, it's more likely these will come from a database.
499
+
As an illustrative example, consider a collection of books. This example uses a hardcoded collection. In a real-world scenario, the data would more likely come from a database.
500
500
501
501
```csharp
502
502
namespaceUmbraco.Docs.Samples.Web.CustomIndexing;
@@ -525,7 +525,7 @@ public static class BookData
525
525
}
526
526
```
527
527
528
-
As with the previous example, we define an index. As this time we aren't indexing Umbraco data, we inherit directly from `LuceneIndex`:
528
+
As with the previous example, define an index. At this time, Umbraco data isn't being indexed; the implementation inherits directly from `LuceneIndex`:
0 commit comments