edit

RediSearch - Redis Powered Search Engine

RediSearch is a Full-Text search over Redis, developed by RedisLabs.

The source code is available at https://github.com/RedisLabsModules/RediSearch.

Latest Release: 0.16 (Preview)

Overview

Redisearch impements a search engine on top of redis, but unlike other redis search libraries, it does not use internal data structures like sorted sets.

This also enables more advanced features, like exact phrase matching and numeric filtering for text queries, that are not possible or efficient with traditional redis search approache

Client Libraries

Community Libraries:

Primary Features:

  • Full-Text indexing of multiple fields in documents.
  • Incremental indexing without performance loss.
  • Document ranking (provided manually by the user at index time).
  • Complex boolean queries with AND, OR, NOT operators between sub-queries.
  • Optional query clauses.
  • Prefix based searches.
  • Field weights.
  • Auto-complete suggestions (with fuzzy prefix suggestions)
  • Exact Phrase Search, Slop based search.
  • Stemming based query expansion in many languages (using Snowball).
  • Support for custom functions for query expansion and scoring (see Extensions).
  • Limiting searches to specific document fields (up to 8 fields supported).
  • Numeric filters and ranges.
  • Geo filtering using Redis' own Geo-commands.
  • Supports any utf-8 encoded text.
  • Retrieve full document content or just ids
  • Automatically index existing HASH keys as documents.
  • Document deletion and updating with index garbage collection.