RediSearch - Redis Powered Search Engine

    Gitter

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

    !!! note “Quick Links:” * Source Code at GitHub. * * Docker Image: redislabs/redisearch * * Mailing list / Forum

    Redisearch implements 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 approaches.

    Client Libraries

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

    RediSearch has a distributed cluster version that can scale to billions of documents and hundreds of servers. However, it is only available as part of Redis Labs Enterprise. We also offer official commercial support for RediSearch. See the for more info and contact information.

    Primary Features

    • Full-Text indexing of multiple fields in documents.
    • 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 ).
    • Support for custom functions for query expansion and scoring (see Extensions).
    • Limiting searches to specific document fields.
    • 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.
    • Partial and conditional document updates.
    1. RediSearch & CRDT - Redis Day Tel Aviv 2019

    Blog posts

    1. Mastering RediSearch / Part II

    Mailing List / Forum

    Got questions? Feel free to ask at the RediSearch mailing list.

    Redis Source Available License Agreement - see