Skip to content

Commit a30cd4c

Browse files
authored
DEV: quick fix to TOC for index mgmt page (#1144)
1 parent 0d412d0 commit a30cd4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/develop/interact/search-and-query/best-practices/index-mgmt-best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ Monitoring and troubleshooting aliases:
152152
- If schema changes are required, create a new index with the updated schema and reassign the alias once the index is ready.
153153
- Use [Redis key expiration]({{< relref "/develop/use/keyspace#key-expiration" >}}) to automatically remove outdated records and keep indexes lean.
154154
155-
### [`FT.ALTER`]({{< baseurl >}}/commands/ft.alter) vs. aliasing
155+
### FT.ALTER vs. aliasing
156156
157-
Use `FT.ALTER` when you need to add new fields to an existing index without rebuilding it, minimizing downtime and resource usage. However, `FT.ALTER` cannot remove or modify existing fields, limiting its flexibility.
157+
Use [`FT.ALTER`]({{< baseurl >}}/commands/ft.alter) when you need to add new fields to an existing index without rebuilding it, minimizing downtime and resource usage. However, `FT.ALTER` cannot remove or modify existing fields, limiting its flexibility.
158158
159159
Use index aliasing when making schema changes that require reindexing, such as modifying field types or removing fields. In this case, create a new index with the updated schema, populate it, and then use `FT.ALIASUPDATE` to seamlessly switch queries to the new index without disrupting application functionality.
160160

0 commit comments

Comments
 (0)