RediSearch for Full-Text Search
Learn to use the RediSearch module for full-text search.
The RediSearch module provides querying, secondary indexing, and full-text search features. Although it’s possible to use a combination of Redis data structures to build search capabilities, it will take significant time and effort to do that. It’s preferable to use a module such as RediSearch since it’s purpose built for indexing and search requirements.
Concepts of RediSearch
At a high-level, RediSearch uses schema, indexes, and a query syntax to store and search documents.
Schema: RediSearch schema define the fields and attributes that will be indexed. Multiple attribute types are supported ...