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: solutions/search/full-text/search-with-synonyms.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,24 +71,24 @@ The behavior of equivalent synonyms depends on the `expand` parameter in your to
71
71
- If `expand=true`: `ipod, i-pod, i pod` expands to `ipod, i-pod, i pod`
72
72
- If `expand=false`: `ipod, i-pod, i pod` maps to just `ipod`
73
73
74
-
### Method 1: Kibana UI
74
+
### Method 1: {{kib}} UI
75
75
76
76
```yaml {applies_to}
77
77
serverless:
78
78
elasticsearch:
79
79
```
80
80
81
-
You can create and manage synonym sets and synonym rules using the Kibana user interface. This provides a user-friendly way to manage synonyms without using APIs or file uploads.
81
+
You can create and manage synonym sets and synonym rules using the {{kib}} user interface. This provides a user-friendly way to manage synonyms without using APIs or file uploads.
82
82
83
83
To create a synonym set using the UI:
84
84
85
85
1. Navigate to **Elasticsearch** > **Synonyms** or use the [global search field](docs-content://explore-analyze/query-filter/filtering.md#_finding_your_apps_and_objects)
86
86
2. Click **Get started**
87
87
3. Enter a name for your synonym set
88
-
4. Add your synonym rules in the editor using the formats above:
89
-
- Explicit mappings: `i-pod, i pod => ipod`
90
-
- Equivalent synonyms: `ipod, i-pod, i pod`
91
-
5. Click **Create** to save your synonym set
88
+
4. Add your synonym rules in the editor by adding terms to match against:
89
+
- Add **Equivalent rules** by addings multiple equivalent terms. For example: `ipod, i-pod, i pod`
90
+
- Add **Explicit rules** by addings multiple terms that map to a single term. For example: `i-pod, i pod => ipod`
91
+
5. Click **Save** to save your rules.
92
92
93
93
The UI supports the same synonym rule formats as the file-based approach. Changes made through the UI will automatically reload the associated analyzers.
0 commit comments