> ## Documentation Index
> Fetch the complete documentation index at: https://upstash.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

This section provides complete, real-world examples demonstrating how to use Redis Search
in common application scenarios. Each recipe includes schema design, sample data, and
query patterns you can adapt for your own use cases.

### Available Recipes

| Recipe                                   | Description                                                              | Key Features                                                 |
| ---------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------ |
| [E-commerce Search](./e-commerce-search) | Build a product catalog with filters, faceted search, and typo tolerance | Fuzzy matching, range filters, boosting, sorting             |
| [Blog Search](./blog-search)             | Full-text article search with highlighted snippets                       | Phrase matching, date ranges, highlighting, smart matching   |
| [User Directory](./user-directory)       | Searchable employee directory with autocomplete                          | Autocomplete, nested fields, exact matching, boolean filters |

### Choosing the Right Approach

These recipes demonstrate different patterns:

* **E-commerce**: Optimized for filtering and faceted navigation with typo-tolerant search
* **Blog Search**: Optimized for content discovery with relevance ranking and visual feedback
* **User Directory**: Optimized for quick lookups with autocomplete and exact matching
