RediSearch - Redis Powered Search Engine

    RediSearch is a an open-source Full-Text and Secondary Index engine over Redis, developed by Redis Labs .

    Quick Links:

    RediSearch is developed and tested on Linux and Mac OS, on x86_64 CPUs.

    i386 CPUs should work fine for small data-sets, but are not tested and not recommended. Atom CPUs are not supported currently.

    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

    Official and community client libraries in Python, Java, JavaScript, Ruby, Go, C#, and PHP. See

    • 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)
    • Stemming based query expansion in many languages (using ).
    • Support for custom functions for query expansion and scoring (see Extensions ).
    • Limiting searches to specific document fields ( Up to 32 128 TEXT fields supported; Unlimited TAG and NUMERIC fields ).
    • Numeric filters and ranges.
    • Geo filtering using Redis’ own Geo-commands.
    • Unicode support (UTF-8 input required)
    • Retrieve full document content or just ids
    • Document deletion and updating with index garbage collection.