Search and query

The RediSearch 2.x module is a source-available project that lets you build powerful search queries for open source Redis databases. When combined with Redis Enterprise Software, you can use the same protocols and commands to run geo-replicated queries and full-text searches over efficient in-memory indexes.

Index documents

The search and query engine indexes documents, which are objects that represent data as field-value pairs. You can index more than one field per document, and these fields can represent text, numeric, or geospatial data types.

As the documents in your database change, the index automatically processes these changes to keep the search results up to date.

With indexes, you can do:

Supported document types

You can store documents as Redis hashes or JSON. To search and query JSON documents, you also need to enable JSON in your database.

Hash documents

With Redis hashes, each document is assigned to a single key and uses field-value pairs to represent the document's contents.

You can run HGETALL to retrieve the entire hash document.

JSON documents

You can index, search, and query JSON documents stored in your database.

For more information about how to search and query JSON documents, see the quick start.

Search features

For full-text searches, you can customize the field queries and ranking of the search results. When querying, you can use multiple predicates that query text, numeric, and geospatial fields in one query. You can also sort by a specific field and limit the results with an offset to produce customized results pages.

Redis Stack supports over 15 natural languages for stemming and includes auto-complete engines with specific commands that can provide real-time interactive search suggestions.

Search and query Active-Active databases

As a result of the new RediSearch architecture and methodology, RediSearch 2.x supports Active-Active databases. You can now serve your index information from geo-distributed database instances.

Resharding indexed data

By moving the index out of the keyspace and structuring the data as hashes, RediSearch 2.x makes it possible to reshard the database. When half of the data moves to the new shard, the index related to that data is created synchronously and Redis removes the keys from the index when it detects that the keys were deleted. Because the index on the new shard is created synchronously though, it's expected that the resharding process will take longer than resharding of a database without search and query enabled.

Limitations

More info

RATE THIS PAGE
Back to top ↑