Fully managed and integrated with Google Cloud, Azure, and AWS.
Build the fastest, most reliable GenAI apps with our advanced vector database.
Self-managed software with enterprise-grade compliance and reliability.
Synchronize data in near-real time to make data fast—without writing code.
In-memory database for caching & streaming.
FT.SYNUPDATE index synonym_group_id [SKIPINITIALSCAN] term [term ...]
@search
,
Update a synonym group
index
is index name.
synonym_group_id
is synonym group to return.
Use FT.SYNUPDATE to create or update a synonym group with additional terms. The command triggers a scan of all documents.
SKIPINITIALSCAN
does not scan and index, and only documents that are indexed after the update are affected.
FT.SYNUPDATE returns a simple string reply OK
if executed correctly, or an error reply otherwise.
127.0.0.1:6379> FT.SYNUPDATE idx synonym hello hi shalom
OK
127.0.0.1:6379> FT.SYNUPDATE idx synonym SKIPINITIALSCAN hello hi shalom
OK