Redis®*: Good to know
This documentation is part of the Vector search and RAG guide. View the full guide here: Semantic search, recommendations, and retrieval-augmented generation with Redis.
👋 Welcome to the Stackhero documentation!
Stackhero offers a ready-to-use Redis cloud solution that provides a host of benefits, including:
Redis Commanderweb UI included.- Unlimited message size and transfers.
- Effortless updates with just a click.
- Optimal performance and robust security powered by a private, dedicated infrastructure.
Save time and simplify your life: it only takes 5 minutes to try Stackhero's Redis cloud hosting solution!
- Vector indexes only work on database 0, as with all search indexes in Redis.
- Vector sets offer a simpler alternative with no setup required. The
VADDandVSIMcommands are built into Redis, so you can use similarity search immediately, without enabling any modules. This is convenient for simple recommendation scenarios on a single set. The query engine is the better choice when you need filters, pagination, or multiple fields. - Building an index over existing keys runs in the background. You can check progress with
FT.INFO. Searches return partial results until indexing completes.
To learn more about vector search in Redis, see the official Redis vector search documentation.